vaticle / typedb-docs

TypeDB Documentation
25 stars 72 forks source link

Python driver docs reference an undefined enum #883

Closed nicholasphair closed 2 weeks ago

nicholasphair commented 2 weeks ago

Description

The python driver documentation references an enum that is not defined.

Location of Content

Link 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 2 weeks ago

@nicholasphair thanks for pointing this out!

cxdorn commented 2 weeks ago

fixed