Skip to content

Commit a13a37d

Browse files
committed
removed unnecessary spaces
1 parent cb55bd7 commit a13a37d

File tree

5 files changed

+1
-7
lines changed

5 files changed

+1
-7
lines changed

src/class_sqlThread.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import threading
1010
import time
1111

12-
1312
try:
1413
import helper_sql
1514
import helper_startup

src/sql/init_version_5.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ DROP TABLE knownnodes;
88
CREATE TABLE `objectprocessorqueue` (
99
`objecttype` text,
1010
`data` blob,
11-
UNIQUE(objecttype, data) ON CONFLICT REPLACE
11+
UNIQUE(objecttype, data) ON CONFLICT REPLACE
1212
) ;

src/sql/initialize_schema.sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,3 @@ CREATE TABLE `objectprocessorqueue` (
9898
`data` blob,
9999
UNIQUE(objecttype, data) ON CONFLICT REPLACE
100100
) ;
101-
102-
103-

src/tests/sql/init_version_5.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
INSERT INTO `objectprocessorqueue` VALUES ('hash', 1);
2-

src/tests/sql/init_version_6.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
INSERT INTO `inventory` VALUES ('hash', 1, 1, 1,'test','test');
2-

0 commit comments

Comments
 (0)