Skip to content

Commit

Permalink
fix/circular_import (#101)
Browse files Browse the repository at this point in the history
raises AttributeError instead of ImportError
  • Loading branch information
JarbasAl authored Mar 3, 2023
1 parent e2153c3 commit 843c829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_utils/network_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# TODO - remove next stable
try:
from ovos_utils.process_utils import RuntimeRequirements as NetworkRequirements
except ImportError:
except:
pass # circular import introduced here, ovos_config importts network_utils, process_utils imports ovos_config

from ovos_utils.log import LOG
Expand Down

0 comments on commit 843c829

Please sign in to comment.