Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbrzezinski committed Mar 22, 2021
1 parent f15980e commit 62963c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moonraker/components/spool_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def find_all_spools(self, show_inactive: bool) -> List[dict]:
if not show_inactive:
spools = {k: v for k, v in spools if v['active'] is True}

return spools
return dict(spools)

def track_filament_usage(self, job_id: str, used_length: float):
spool_id = self.get_active_spool_id()
Expand Down

0 comments on commit 62963c7

Please sign in to comment.