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
{{ message }}
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
The data in for each library doesn't include the libraries name. The library name only appears as a key in the enclosing map/dict. This creates an issue if you pass the library data around because the name isn't available.
The text was updated successfully, but these errors were encountered:
"FaultTriggering": {
"homepage": "https://github.com/DLR-SR/FaultTriggering",
"description": "Library for fault modelling in Modelica",
"versions": {
"0.6.2": {
...
}
}
}
If I then grab the library data like this:
libinfo = index["FaultTriggering"];
The object libinfo no longer knows the name of the library. So if I pass libinfo to a function, that function has no idea what library this is. But if, instead, we had:
The data in for each library doesn't include the libraries name. The library name only appears as a key in the enclosing map/dict. This creates an issue if you pass the library data around because the name isn't available.
The text was updated successfully, but these errors were encountered: