Skip to content

Commit

Permalink
Ignore flake8-bugbear warning about DeclarativeModel not having abstr…
Browse files Browse the repository at this point in the history
…act methods.
  • Loading branch information
dgilland committed Oct 11, 2022
1 parent 86172af commit e7f4314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqlservice/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
NO_VALUE = symbol("NO_VALUE")


class DeclarativeModel(metaclass=ABCMeta):
class DeclarativeModel(metaclass=ABCMeta): # noqa: B024
@classmethod
def __subclasshook__(cls, class_):
if cls is DeclarativeModel:
Expand Down

0 comments on commit e7f4314

Please sign in to comment.