Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSiwek committed Dec 25, 2023
1 parent e17828e commit 06788e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _get_env_vars(self, relational_db_data):
ret_env_vars = {
"ZENML_STORE_TYPE": "sql",
"ZENML_STORE_URL": f"mysql://{relational_db_data['username']}:{relational_db_data['password']}@{relational_db_data['host']}:{relational_db_data['port']}/{self._database_name}", # noqa: E501
"DISABLE_DATABASE_MIGRATION": "True", # To avoid migrations https://github.com/zenml-io/zenml/tree/9a69295e9aabaa90156b0cc6115f585a91d0f108/src/zenml/zen_stores/migrations # noqa: E501
"DISABLE_DATABASE_MIGRATION": "True", # To avoid migrations https://github.com/zenml-io/zenml/tree/9a69295e9aabaa90156b0cc6115f585a91d0f108/src/zenml/zen_stores/migrations # noqa: E501
"ZENML_STORE_SSL_VERIFY_SERVER_CERT": "false",
"ZENML_SERVER_DEPLOYMENT_TYPE": "kubernetes",
"ZENML_DEFAULT_PROJECT_NAME": "default",
Expand Down

0 comments on commit 06788e8

Please sign in to comment.