♻️ rename time to temporal to avoid conflict with std

and some linter changes
This commit is contained in:
Ondřej Samohel 2025-01-29 22:22:05 +01:00
parent 085aa74976
commit 920f917f94
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
8 changed files with 44 additions and 40 deletions

View file

@ -79,8 +79,6 @@ pydocstyle.convention = "google"
select = ["ALL"]
ignore = [
"PTH",
"ANN101",
"ANN102",
"ANN204",
"COM812",
"S603",
@ -91,6 +89,8 @@ ignore = [
"UP035", # ..
"ARG002",
"INP001", # add `__init__.py` to namespaced package
"FIX002", # FIX all TODOs
"TD003", # missing issue link
]
# Allow fix for all enabled rules (when `--fix`) is provided.