We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63901d2 commit ddb4d5eCopy full SHA for ddb4d5e
pyhdx/cli.py
@@ -1,9 +1,9 @@
1
import time
2
-from typing import Optional
+from ipaddress import ip_address
3
from pathlib import Path
4
+from typing import Optional
5
6
import typer
-from ipaddress import ip_address
7
from omegaconf import OmegaConf
8
from tqdm.auto import tqdm
9
@@ -23,7 +23,7 @@ def serve(
23
"""Launch the PyHDX web application"""
24
25
from pyhdx.config import cfg
26
- from pyhdx.local_cluster import verify_cluster, default_cluster
+ from pyhdx.local_cluster import default_cluster, verify_cluster
27
28
if config is not None:
29
conf = OmegaConf.create(config.read_text())
0 commit comments