Skip to content

Commit 1cbb5aa

Browse files
committed
fix(workers): correct import order (pathlib before config)
1 parent c4e110b commit 1cbb5aa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/fourdpocket/workers/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
def _get_huey():
99
global _huey_instance
1010
if _huey_instance is None:
11-
from fourdpocket.config import get_settings
1211
from pathlib import Path
1312

13+
from fourdpocket.config import get_settings
14+
1415
settings = get_settings()
1516
base = settings.storage.base_path
1617
base_path = Path(base).expanduser().resolve()

0 commit comments

Comments
 (0)