From 045d2ddadff4f0f1e5ffdd9e25e97c53e2eb43db Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 15 Oct 2024 19:52:12 +0300 Subject: [PATCH] create-all-tables-fix2 --- pyproject.toml | 3 +++ services/viewed.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc5726b4..a9d67e99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,3 +42,6 @@ multi_line_output = 3 include_trailing_comma = true force_grid_wrap = 0 line_length = 120 + +[tool.ruff] +line-length = 120 diff --git a/services/viewed.py b/services/viewed.py index 34557853..c5ef94d2 100644 --- a/services/viewed.py +++ b/services/viewed.py @@ -68,7 +68,7 @@ class ViewedStorage: if not os.path.exists(viewfile_path): logger.warning(" * views.json not found") return - + logger.info(f" * loading views from {viewfile_path}") try: start_date_int = os.path.getmtime(viewfile_path)