fix: remove all pylint disable comments and enable all meta checks

This commit is contained in:
Krzysztof kuhy Rudnicki 2025-12-01 16:22:03 +01:00
parent 3a477dd868
commit 134d606db0
4 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,6 @@
"""Lichess API client for bot interactions."""
from collections.abc import Generator # pylint: disable=import-error
from collections.abc import Generator
import contextlib
from http import HTTPStatus
import json

View File

@ -27,7 +27,7 @@ def get_and_increment_version() -> int:
path = _version_file_path()
current = 0
try:
with Path(path).open() as f:
with Path(path).open(encoding="utf-8") as f:
raw = f.read().strip()
if raw:
current = int(raw)
@ -38,13 +38,13 @@ def get_and_increment_version() -> int:
new_version = current + 1
try:
tmp_path = Path(path + ".tmp")
with tmp_path.open("w") as f:
with tmp_path.open("w", encoding="utf-8") as f:
f.write(str(new_version))
tmp_path.replace(path)
except OSError:
# As a fallback, try a direct write; failure is non-fatal to bot operation
try:
with Path(path).open("w") as f:
with Path(path).open("w", encoding="utf-8") as f:
f.write(str(new_version))
except OSError:
_logger.debug("Could not persist bot version to %s", path)

View File

@ -1,6 +1,6 @@
"""Mitmproxy addon to simulate connection failures."""
from mitmproxy import http # pylint: disable=import-error
from mitmproxy import http
def request(flow: http.HTTPFlow) -> None:

View File

@ -6,14 +6,10 @@ from pathlib import Path
from urllib.parse import urlparse
import requests
# pylint: disable=import-error
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.by import By
# pylint: enable=import-error
_logger = logging.getLogger(__name__)
REQUEST_TIMEOUT = 30 # seconds