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
NameError Traceback (most recent call last)
~/test.py in ()
581 if "__" not in str(x)])
582 for grp in diag_res_grps:
----> 583 exec(f"import diagrams.{res}.{grp}")
584 grp_nodes = [
585 x[0] for x in eval(f"inspect.getmembers(diagrams.{res}.{grp}, inspect.isclass)")
~/test.py in ()
/home/user/miniconda/envs/test/lib/python3.6/site-packages/diagrams/oci/database.py in <module>()
83 # Aliases
84
---> 85 ADB = AutonomousDatabase
86 ADBWhite = AutonomousDatabaseWhite
87 DBService = Databaseservice
NameError: name 'AutonomousDatabase' is not defined
The text was updated successfully, but these errors were encountered:
diagrams/diagrams/oci/database.py
Line 85 in bc14aec
should be
Autonomous
diagrams/diagrams/oci/database.py
Line 15 in bc14aec
AutonomousWhite
will also have to be fixed.diagrams/diagrams/oci/database.py
Line 86 in bc14aec
diagrams/diagrams/oci/database.py
Line 11 in bc14aec
The text was updated successfully, but these errors were encountered: