Skip to content

Commit f2dec98

Browse files
committed
Fix OpenDSSDirect.to_altdss()
1 parent 45613fd commit f2dec98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opendssdirect/OpenDSSDirect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def to_altdss(self) -> AltDSS:
380380
A compatible AltDSS (`pip install altdss`) is required.
381381
"""
382382
from altdss import AltDSS
383-
return AltDSS._get_instance(self._api_util.ctx, self._api_util)
383+
return AltDSS._get_instance(ctx=self._api_util.ctx, api_util=self._api_util)
384384

385385
def __call__(self, cmds: Union[AnyStr, List[AnyStr]] = None):
386386
'''

0 commit comments

Comments
 (0)