Separate bricktracker sets from rebrickable sets (dedup), introduce custom checkboxes

This commit is contained in:
2025-01-24 10:36:24 +01:00
parent 57d9f167a5
commit d063062780
88 changed files with 1560 additions and 748 deletions

View File

@@ -6,7 +6,7 @@ from flask_socketio import SocketIO
from .configuration_list import BrickConfigurationList
from .login import LoginManager
from .rebrickable_set import RebrickableSet
from .set import BrickSet
from .sql import close as sql_close
logger = logging.getLogger(__name__)
@@ -98,7 +98,7 @@ class BrickSocket(object):
self.fail(message=str(e))
return
brickset = RebrickableSet(self)
brickset = BrickSet(socket=self)
# Start it in a thread if requested
if self.threaded:
@@ -124,7 +124,7 @@ class BrickSocket(object):
self.fail(message=str(e))
return
brickset = RebrickableSet(self)
brickset = BrickSet(socket=self)
# Start it in a thread if requested
if self.threaded: