You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To reproduce the error, start a local server and go to 'sst2 Test Benchmark'. The page will continue loading and the error shows in the terminal.
SystemModel.get_system_info() returns different types
system.get_system_info() will return both dict and SystemOutputInfo, although the function definition says to return SystemOutputInfo. I'm not sure if the error is due to serialization or due to duplicate system names.
In addition, after I changed the system names to be distinct, the same error still occurs as the system names are not changed when retrieving these systems.
This issue may be related to PR #526
To reproduce the error, start a local server and go to 'sst2 Test Benchmark'. The page will continue loading and the error shows in the terminal.
SystemModel.get_system_info() returns different types
system.get_system_info()
will return bothdict
andSystemOutputInfo
, although the function definition says to returnSystemOutputInfo
. I'm not sure if the error is due to serialization or due to duplicate system names.In addition, after I changed the system names to be distinct, the same error still occurs as the system names are not changed when retrieving these systems.
Here is the printed info.
SystemOutputInfo doesn't have
to_dict()
.When I try to call
SystemOutputInfo.to_dict()
, it gives this error:AttributeError: 'SysOutputInfo' object has no attribute 'to_dict'
.The text was updated successfully, but these errors were encountered: