Skip to content

Commit

Permalink
remove per file ignore, mark Metadata explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbreckenridge committed Oct 1, 2023
1 parent 78598d4 commit 734bc46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions browserexport/browsers/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# unused imports here, to bring them into scope for other files
import os
import sys
import sqlite3
Expand All @@ -20,7 +19,8 @@
import click

from ..log import logger
from ..model import Visit, Metadata
from ..model import Visit
from ..model import Metadata # noqa: F401
from ..common import PathIsh, PathIshOrConn, expand_path, BrowserexportError
from ..sqlite import execute_query

Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ browserexport = py.typed

[flake8]
ignore = E501,E402,W503,E266,E203
per-file-ignores =
browserexport/browsers/common.py:F401

[mypy]
pretty = True
Expand Down

0 comments on commit 734bc46

Please sign in to comment.