Skip to content

Commit

Permalink
feat: Expose dummy and bluefors directly in instruments
Browse files Browse the repository at this point in the history
Since they do not require extra deps
  • Loading branch information
alecandido committed Sep 16, 2024
1 parent f401521 commit cbe8c77
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/qibolab/instruments/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from . import bluefors, dummy
from .bluefors import *
from .dummy import *

__all__ = []
__all__ += dummy.__all__
__all__ += bluefors.__all__

0 comments on commit cbe8c77

Please sign in to comment.