Skip to content

Commit

Permalink
Fix import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ronny-rentner committed Nov 29, 2024
1 parent 267fe4b commit bcc4519
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UltraDict.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
except ultraimport.ResolveImportError:
import logging as log
except ModuleNotFoundError:
import Exceptions
try:
from .Exceptions import *
except ImportError:
import Exceptions
from pymutex.mutex import SharedMutex
try:
from utils import log
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
atomics
psutil
ultraimport

0 comments on commit bcc4519

Please sign in to comment.