ruff: enable upgrade rule checks

This commit is contained in:
Jörg Thalheim
2023-08-27 10:46:53 +02:00
parent bac0942033
commit 9913a95cc2
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ router = APIRouter()
async def root(path_name: str) -> Response: async def root(path_name: str) -> Response:
if path_name == "": if path_name == "":
path_name = "index.html" path_name = "index.html"
filename = Path(os.path.normpath((asset_path() / path_name))) filename = Path(os.path.normpath(asset_path() / path_name))
if not filename.is_relative_to(asset_path()): if not filename.is_relative_to(asset_path()):
# prevent directory traversal # prevent directory traversal

View File

@@ -20,7 +20,7 @@ def try_bind_port(port: int) -> bool:
tcp.bind(("127.0.0.1", port)) tcp.bind(("127.0.0.1", port))
udp.bind(("127.0.0.1", port)) udp.bind(("127.0.0.1", port))
return True return True
except socket.error: except OSError:
return False return False

View File

@@ -46,7 +46,7 @@ ignore_missing_imports = true
[tool.ruff] [tool.ruff]
line-length = 88 line-length = 88
select = [ "E", "F", "I" ] select = [ "E", "F", "I", "U"]
ignore = [ "E501" ] ignore = [ "E501" ]
[tool.black] [tool.black]