Skip to content

Commit

Permalink
Changes drone yml and removes circular import (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
JWittmeyer committed Feb 12, 2024
1 parent 7b3a5e7 commit 972dd54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ steps:
commands:
- git submodule init
- 'git config --global url."https://github.com/".insteadOf [email protected]:'
- "git submodule update --recursive --remote"
- "git submodule update --recursive"
- name: build and publish
image: plugins/docker
settings:
Expand Down Expand Up @@ -75,7 +75,7 @@ steps:
commands:
- git submodule init
- 'git config --global url."https://github.com/".insteadOf [email protected]:'
- "git submodule update --recursive --remote"
- "git submodule update --recursive"
- name: build and publish
image: plugins/docker
settings:
Expand Down Expand Up @@ -111,7 +111,7 @@ steps:
commands:
- git submodule init
- 'git config --global url."https://github.com/".insteadOf [email protected]:'
- "git submodule update --recursive --remote"
- "git submodule update --recursive"
- name: build and publish
image: plugins/docker
settings:
Expand Down Expand Up @@ -140,7 +140,7 @@ steps:
commands:
- git submodule init
- 'git config --global url."https://github.com/".insteadOf [email protected]:'
- "git submodule update --recursive --remote"
- "git submodule update --recursive"
- name: build and publish
image: plugins/docker
settings:
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from pydantic import BaseModel
from typing import Union, Dict, Optional

import submodules.model.business_objects.general as general
from controller import stats
from controller import integration
from submodules.model.business_objects import general

# API creation and description
app = FastAPI()
Expand Down

0 comments on commit 972dd54

Please sign in to comment.