Skip to content

Commit

Permalink
fix import bug for non-windows users (OPUS control disabled)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshduran committed May 21, 2024
1 parent b06c841 commit 7b18432
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion brukeropus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,8 @@
'''

from brukeropus.file import OPUSFile, read_opus, find_opus_files
from brukeropus.control import Opus

try:
from brukeropus.control import Opus
except:
pass

0 comments on commit 7b18432

Please sign in to comment.