We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a61083 commit e790298Copy full SHA for e790298
3 files changed
.github/workflows/code_quality.yaml
@@ -58,8 +58,8 @@ jobs:
58
with:
59
os: ${{ job.os }}
60
python-version: '3.11'
61
- poetry-install-options: "--only=types --no-root"
62
- poetry-export-options: "--only=types"
+ poetry-install-options: "--with=types --no-root"
+ poetry-export-options: "--with=types"
63
64
- name: Check types
65
run: poetry run mypy tesk/
pyproject.toml
@@ -6,6 +6,7 @@ requires = ["poetry-core"]
6
skips = [
7
"B321", # FTP-related functions are being called.
8
"B402", # A FTP-related module is being imported.
9
+ "B108" # Insecure usage of temp file/directory, false positive.
10
]
11
12
[tool.poetry]
0 commit comments