ruff: also lint upgrade rules

This commit is contained in:
Jörg Thalheim 2023-09-18 15:41:34 +02:00
parent 05a9185726
commit 5915bf4ffa
2 changed files with 9 additions and 2 deletions

View file

@ -6,7 +6,7 @@ import os
import uuid
from collections import defaultdict
from pathlib import Path
from typing import Any, Generator, List
from typing import Any
from buildbot.plugins import steps, util
from buildbot.process import buildstep, logobserver, remotecommand
@ -348,7 +348,7 @@ def nix_eval_config(
worker_names: list[str],
github_token_secret: str,
supported_systems: list[str],
automerge_users: List[str] = [],
automerge_users: list[str] = [],
max_memory_size: int = 4096,
) -> util.BuilderConfig:
"""

View file

@ -1,3 +1,10 @@
[tool.ruff]
target-version = "py311"
line-length = 88
select = ["E", "F", "I", "U"]
ignore = [ "E501" ]
[tool.mypy]
python_version = "3.10"
warn_redundant_casts = true