Skip to content

Commit

Permalink
disable skipping of initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Oct 31, 2023
1 parent ed2c8b8 commit e8e2625
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iblrig/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ def __new__(cls, *args, **kwargs):
return instance

def __init__(self, *args, **kwargs):
# skip initialization if it has already been performed before
if self._is_initialized:
return
# # skip initialization if it has already been performed before
# if self._is_initialized:
# return

# try to instantiate once for nothing
try:
Expand Down

0 comments on commit e8e2625

Please sign in to comment.