@@ -164,25 +164,25 @@ lint.ignore = [
164164
165165 # NOTE: Disable the following rules for now.
166166 " A004" , # import is shadowing a Python built-in
167- " A005" , # Module is shadowing a Python built-in
167+ " A005" , # Module is shadowing a Python built-in
168168 " B909" , # Mutation to loop iterable during iteration
169169 " PLC2701" , # Private name import
170170 " PLC0415" , # import should be at the top of the file
171171 " PLR0917" , # Too many positional arguments
172172 " E226" , # Missing whitespace around arithmetic operator
173173 " E266" , # Too many leading `#` before block comment
174174
175- " F822" , # Undefined name `` in `__all__`
175+ " F822" , # Undefined name `` in `__all__`
176176
177177 " PGH004" , # Use specific rule codes when using 'ruff: noqa'
178178 " PT001" , # Use @pytest.fixture over @pytest.fixture()
179179 " PLR6104" , # Use `*=` to perform an augmented assignment directly
180180 " PLR0914" , # Too many local variables
181181 " PLC0206" , # Extracting value from dictionary without calling `.items()`
182- " PLC1901" , # can be simplified
182+ " PLC1901" , # can be simplified
183183
184184 " RUF021" , # Parenthesize the `and` subexpression
185- " RUF022" , # Apply an isort-style sorting to '__all__'
185+ " RUF022" , # Apply an isort-style sorting to '__all__'
186186 " S404" , # `subprocess` module is possibly insecure
187187 # End of disable rules
188188
@@ -199,7 +199,7 @@ lint.ignore = [
199199 " FBT002" , # Boolean default value in function definition
200200
201201 # flake8-datatimez (`DTZ`)
202- " DTZ005" , # The use of `datetime.datetime.now()` without `tz` argument is not allowed
202+ " DTZ005" , # The use of `datetime.datetime.now()` without `tz` argument is not allowed
203203
204204 # flake8-fixme (`FIX`)
205205 " FIX002" , # Line contains TODO, consider resolving the issue
0 commit comments