We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The python driver documentation references an enum that is not defined.
Link of 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"
DB_NAME = "sample_app_db" SERVER_ADDR = "127.0.0.1:1729" TYPEDB_EDITION = Edition.Core CLOUD_USERNAME = "admin" CLOUD_PASSWORD = "password"
You can see the issue in the public docs.
The text was updated successfully, but these errors were encountered:
Remove enum tag in python driver docs. (#884)
7241c87
## What is the goal of this PR? Resolves #883. ## What are the changes implemented in this PR? Removes the enum tag from `sample.py` and include the `Edition` enum in the constants tag. This is consistent with the other driver examples (e.g., [Java](https://github.com/vaticle/typedb-docs/blob/4a52a99237ed3269230e3a3579ce7e801f91a584/drivers-src/modules/ROOT/partials/tutorials/java/src/main/java/org/example2/Main.java#L20-L32), [CPP](https://github.com/vaticle/typedb-docs/blob/4a52a99237ed3269230e3a3579ce7e801f91a584/drivers-src/modules/ROOT/partials/tutorials/cpp/main.cpp#L8-L15)). --------- Co-authored-by: Christoph Dorn <[email protected]>
@nicholasphair thanks for pointing this out!
Sorry, something went wrong.
fixed
Successfully merging a pull request may close this issue.
Description
The python driver documentation references an enum that is not defined.
Location of Content
Link of Content
Expected Content
Actual Content
Additional information
You can see the issue in the public docs.
The text was updated successfully, but these errors were encountered: