Skip to content

Commit

Permalink
Update init.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler authored Oct 2, 2023
1 parent d7bb793 commit e89ae2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edlclient/Library/Modules/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
try:
from edlclient.Library.Modules.generic import generic
except ImportError as e:
self.error(e)
print(e)
generic = None
pass

try:
from edlclient.Library.Modules.oneplus import oneplus
except ImportError as e:
self.error(e)
print(e)
oneplus = None
pass

try:
from edlclient.Library.Modules.xiaomi import xiaomi
except ImportError as e:
self.error(e)
print(e)
xiaomi = None
pass

Expand Down

0 comments on commit e89ae2a

Please sign in to comment.