Skip to content
Snippets Groups Projects
Commit 4bf25aa8 authored by Tim Repke's avatar Tim Repke
Browse files

fix mypy

parent 43da5443
No related branches found
No related tags found
1 merge request!28fix mypy
Pipeline #1175 canceled
......@@ -11,5 +11,8 @@ NACSOS_DB__USER="root"
NACSOS_DB__PASSWORD="root"
NACSOS_DB__DATABASE="nacsos_core"
NACSOS_PIPES__API_URL="http://localhost:8000/api"
NACSOS_PIPES__TOKEN=""
#NACSOS_USERS__DEFAULT_USER="user1"
NACSOS_USERS__DEFAULT_USER
\ No newline at end of file
......@@ -96,10 +96,10 @@ class UsersConfig(BaseModel):
class PipelinesConfig(BaseModel):
TOKEN: str
API_URL: str = 'http://localhost:8000/api'
USERNAME: str | None = None
USER_ID: str | None = None
TOKEN: str | None = None
class Settings(BaseSettings):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment