Skip to content

Commit 2412905

Browse files
committed
Style
1 parent 038c59d commit 2412905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ams/interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from collections import OrderedDict, Counter
99

1010
from andes.utils.misc import elapsed
11-
from andes.system import System as andes_System
11+
from andes.system import System as adSystem
1212

1313
from ams.utils import create_entry
1414
from ams.io import input_formats
@@ -107,7 +107,7 @@ def to_andes_pflow(system, no_output=False, default_config=True, **kwargs):
107107
Additional arguments to be passed to ``andes.system.System()``.
108108
"""
109109

110-
adsys = andes_System(no_outpu=no_output, default_config=default_config, **kwargs)
110+
adsys = adSystem(no_outpu=no_output, default_config=default_config, **kwargs)
111111
# FIXME: is there a systematic way to do this? Other config might be needed
112112
adsys.config.freq = system.config.freq
113113
adsys.config.mva = system.config.mva

0 commit comments

Comments
 (0)