Python driver docs reference an undefined enum
nicholasphair opened this issue · 2 comments
nicholasphair commented
Description
The python driver documentation references an enum that is not defined.
Location of Content
Expected Content
class Edition(Enum):
Cloud = 1
Core = 2
DB_NAME = "sample_app_db"
SERVER_ADDR = "127.0.0.1:1729"
TYPEDB_EDITION = Edition.Core
CLOUD_USERNAME = "admin"
CLOUD_PASSWORD = "password"
Actual Content
DB_NAME = "sample_app_db"
SERVER_ADDR = "127.0.0.1:1729"
TYPEDB_EDITION = Edition.Core
CLOUD_USERNAME = "admin"
CLOUD_PASSWORD = "password"
Additional information
You can see the issue in the public docs.
cxdorn commented
@nicholasphair thanks for pointing this out!
cxdorn commented
fixed