Skip to content

Commit 7851d93

Browse files
committed
Add missing enum imports
1 parent fa20480 commit 7851d93

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

opendssdirect/CNData.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
22
from .Bases import Iterable
3-
3+
from dss_python_backend.enums import LineUnits
44

55
class ICNData(Iterable):
66
"""

opendssdirect/CapControls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
22
from .Bases import Iterable
3-
3+
from dss_python_backend.enums import CapControlModes
44

55
class ICapControls(Iterable):
66
__slots__ = []

opendssdirect/Circuit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import json
12
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
23
from .Bases import Base
34

4-
55
class ICircuit(Base):
66
__slots__ = []
77

opendssdirect/Meters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
22
from .Bases import Iterable
3-
3+
from dss_python_backend.enums import OCPDevType as OCPDevTypeEnum
44

55
class IMeters(Iterable):
66
__slots__ = []

opendssdirect/Storages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
22
from .Bases import Iterable
3-
3+
from dss_python_backend.enums import StorageStates
44

55
class IStorages(Iterable):
66
"""Storage objects"""

opendssdirect/SwtControls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ._utils import api_util, OPENDSSDIRECT_PY_USE_NUMPY
22
from .Bases import Iterable
3-
3+
from dss_python_backend.enums import ActionCodes
44

55
class ISwtControls(Iterable):
66
__slots__ = []

0 commit comments

Comments
 (0)