Skip to content

Commit

Permalink
Fix: Duplicate line in pyproject and missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonyjin committed Nov 21, 2024
1 parent 28ce743 commit 8942722
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,6 @@ lint.ignore = [
# Tests can use magic values, assertions, and relative imports
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ]

# Tests can use magic values, assertions, and relative imports
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ]

[tool.pytest.ini_options]
pythonpath = [
"src",
Expand Down
8 changes: 4 additions & 4 deletions src/aleph/vm/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ class Settings(BaseSettings):

USE_JAILER: bool = True
# System logs make boot ~2x slower
PRINT_SYSTEM_LOGS = False
IGNORE_TRACEBACK_FROM_DIAGNOSTICS = True
LOG_LEVEL = "WARNING"
DEBUG_ASYNCIO = False
PRINT_SYSTEM_LOGS: bool = False
IGNORE_TRACEBACK_FROM_DIAGNOSTICS: bool = True
LOG_LEVEL: str = "WARNING"
DEBUG_ASYNCIO: bool = False

# Networking does not work inside Docker/Podman
ALLOW_VM_NETWORKING: bool = True
Expand Down

0 comments on commit 8942722

Please sign in to comment.