Skip to content

Commit a464dc7

Browse files
committed
s/flake8/ruff
1 parent e3fe5a7 commit a464dc7

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

pyinaturalist_convert/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# flake8: noqa: F401, F403
1+
# ruff: noqa: F401, F403
22
from pyinaturalist import enable_logging
33

44
from .constants import *

pyinaturalist_convert/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# flake8: noqa: F401
1+
# ruff: noqa: F401
22
from pathlib import Path
33
from typing import TypeAlias
44

pyinaturalist_convert/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
DbUser
5454
"""
5555

56-
# flake8: noqa: F401
56+
# ruff: noqa: F401
5757
import sqlite3
5858
from collections.abc import Iterable, Iterator
5959
from importlib.resources import files

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# flake8: noqa: F401
1+
# ruff: noqa: F401
22
import json
33
import logging
44
from pathlib import Path

test/test_dwca.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# flake8: noqa: F401
1+
# ruff: noqa: F401
22
import sqlite3
33
from logging import getLogger
44

test/test_taxonomy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# flake8: noqa: F401
21
import sqlite3
32
from csv import DictReader
43
from logging import getLogger

0 commit comments

Comments
 (0)