mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-12 19:09:56 +03:00
Ruff: fix typing.Xxx
is deprecated, use xxx
instead (MR 2327)
This commit is contained in:
parent
61cb4f4abb
commit
18fa4e58a3
47 changed files with 137 additions and 147 deletions
|
@ -6,7 +6,7 @@
|
|||
import sys
|
||||
import os
|
||||
import datetime
|
||||
from typing import Any, Dict
|
||||
from typing import Any
|
||||
|
||||
|
||||
sys.path.insert(0, os.path.abspath("..")) # Allow modules to be found
|
||||
|
@ -47,7 +47,7 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|||
html_theme = "sphinx_rtd_theme"
|
||||
html_favicon = "https://wiki.postmarketos.org/favicon.ico"
|
||||
|
||||
html_theme_options: Dict[str, Any] = {
|
||||
html_theme_options: dict[str, Any] = {
|
||||
"style_nav_header_background": "008b69",
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue