Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LSO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This project is archived. Its data is
read-only
.
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
LSO
Merge requests
!48
increased specificity of mypy ignore statements
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
increased specificity of mypy ignore statements
feature/more-specific-type-ignore
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
increased specificity of mypy ignore statements
Karel van Klink
requested to merge
feature/more-specific-type-ignore
into
develop
Sep 22, 2023
Overview
0
Commits
1
Pipelines
2
Changes
1
0
0
Merge request reports
Compare
develop
version 1
870da868
Sep 22, 2023
develop (base)
and
latest version
latest version
1fd5dd93
1 commit,
Sep 22, 2023
version 1
870da868
1 commit,
Sep 22, 2023
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
lso/routes/default.py
+
2
−
2
View file @ 1fd5dd93
Edit in single-file editor
Open in Web IDE
Show full file
@@ -16,8 +16,8 @@ router = APIRouter()
class
Version
(
BaseModel
):
"""
Simple model for returning a version number of both the API and the `goat-lso` module.
"""
api
:
VERSION_STRING
# type: ignore
module
:
VERSION_STRING
# type: ignore
api
:
VERSION_STRING
# type: ignore
[valid-type]
module
:
VERSION_STRING
# type: ignore
[valid-type]
@router.get
(
"
/version
"
)
Loading