We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d62f6d commit 12a55b0Copy full SHA for 12a55b0
Makefile
@@ -10,8 +10,8 @@ check: ## Run code quality tools.
10
@uv lock --locked
11
@echo "🚀 Linting code: Running pre-commit"
12
@uv run pre-commit run -a
13
- @echo "🚀 Static type checking: Running ty"
14
- @uv run ty check
+ #@echo "🚀 Static type checking: Running ty"
+ #@uv run ty check
15
@echo "🚀 Checking for obsolete dependencies: Running deptry"
16
@uv run deptry src
17
src/biocommons/example/__main__.py
@@ -10,7 +10,7 @@
def main(): # pragma: no cover
"""marvin.example main"""
- import coloredlogs
+ import coloredlogs # noqa: PLC0415
logging.Formatter.converter = time.gmtime
coloredlogs.install(
src/biocommons/example/tests/__init__.py
src/biocommons/example/tests/conftest.py
src/biocommons/example/tests/marvin_subdir_test.py
0 commit comments