From 6ef783aa98f2a550d129546f89ba490dd04cf8cf Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sat, 22 Feb 2025 12:27:08 +0100 Subject: [PATCH] Allow selectors module to shadow standard library --- fimfarchive/selectors.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fimfarchive/selectors.py b/fimfarchive/selectors.py index 3f206e4..f703d71 100644 --- a/fimfarchive/selectors.py +++ b/fimfarchive/selectors.py @@ -5,7 +5,7 @@ Selectors for Fimfarchive. # # Fimfarchive, preserves stories from Fimfiction. -# Copyright (C) 2015 Joakim Soderlund +# Copyright (C) 2025 Joakim Soderlund # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,6 +27,8 @@ from fimfarchive.flavors import UpdateStatus from fimfarchive.mappers import StoryDateMapper +# ruff: noqa: A005, stdlib-module-shadowing. + __all__ = ( 'Selector', 'RefetchSelector',