Skip to content

Commit

Permalink
Update spoolman.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeanon committed Jan 15, 2024
1 parent daee516 commit c37e0b2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions moonraker/components/spoolman.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ def _register_endpoints(self):
)

async def component_init(self) -> None:
self.spool_id = await self.database.get_item(
DB_NAMESPACE, ACTIVE_SPOOL_KEY, None
)
self.spool_id = None
# self.spool_id = await self.database.get_item(
# DB_NAMESPACE, ACTIVE_SPOOL_KEY, None
#)

Check warning on line 85 in moonraker/components/spoolman.py

View workflow job for this annotation

GitHub Actions / lint-python-code

block comment should start with '# '
logging.info("test")

async def _handle_server_ready(self):
Expand Down

0 comments on commit c37e0b2

Please sign in to comment.