Skip to content

Commit

Permalink
Merge pull request #1 from mnause-ks/fix/missing_imports
Browse files Browse the repository at this point in the history
fix missing imports
  • Loading branch information
ivandiep-ks committed May 23, 2023
2 parents 1fe7b4b + e30f0f7 commit f4ca0fd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CaptureVoltageStep.py
@@ -1,7 +1,7 @@
from OpenTap import AvailableValues, Display, Unit, Verdict
from System import Double, Int32
from System.Collections.Generic import List
from System.ComponentModel import Browsable # BrowsableAttribute can be used to hide things from the user.
from System.ComponentModel import Browsable
from opentap import *

from .Oscilloscope import *
Expand Down
1 change: 1 addition & 0 deletions CountPulsesStep.py
@@ -1,6 +1,7 @@
from OpenTap import AvailableValues, Display, EnabledIf, Output, Unit, Verdict
from System import Boolean, Double, String, Int32
from System.Collections.Generic import List
from System.ComponentModel import Browsable
from opentap import *

from .LogicAnalyzer import *
Expand Down
1 change: 1 addition & 0 deletions LogicAnalyzerCaptureStep.py
@@ -1,6 +1,7 @@
from OpenTap import AvailableValues, Display, EnabledIf, Unit
from System import Boolean, Double, Int32
from System.Collections.Generic import List
from System.ComponentModel import Browsable
from opentap import *

from .LogicAnalyzer import *
Expand Down
1 change: 1 addition & 0 deletions MeasureIntervalStep.py
@@ -1,6 +1,7 @@
from OpenTap import AvailableValues, Display, Output, Unit, Verdict
from System import Double, String
from System.Collections.Generic import List
from System.ComponentModel import Browsable
from opentap import *

from .LogicAnalyzer import *
Expand Down
1 change: 1 addition & 0 deletions MeasureRMSVoltageStep.py
Expand Up @@ -3,6 +3,7 @@
from OpenTap import AvailableValues, Display, TapThread, Unit, Verdict
from System import Double, String
from System.Collections.Generic import List
from System.ComponentModel import Browsable
from opentap import *

from .Oscilloscope import *
Expand Down
1 change: 1 addition & 0 deletions MeasureVoltageStep.py
@@ -1,6 +1,7 @@
from OpenTap import AvailableValues, Display, Output, Unit, Verdict
from System import Double, String
from System.Collections.Generic import List
from System.ComponentModel import Browsable
from opentap import *

from .Multimeter import *
Expand Down

0 comments on commit f4ca0fd

Please sign in to comment.