Skip to content

Commit

Permalink
Merge pull request #1153 from DSD-DBS/fix-pre-commit
Browse files Browse the repository at this point in the history
ci: Ignore `print`-statements in workspace CLI
  • Loading branch information
MoritzWeber0 authored Nov 1, 2023
2 parents b51e6dc + a9ba883 commit 83d28d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/capellacollab/cli/ws.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors
# SPDX-License-Identifier: Apache-2.0

# pylint: disable=bad-builtin

from __future__ import annotations

import contextlib
Expand All @@ -11,7 +13,7 @@
import typing as t

import typer
import websocket # type: ignore[import]
import websocket
from kubernetes import client, config, stream

app = typer.Typer()
Expand Down
1 change: 1 addition & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ module = [
"alembic.*",
"jwt.*",
"argon2.*",
"websocket.*"
]
ignore_missing_imports = true

Expand Down

0 comments on commit 83d28d7

Please sign in to comment.