Skip to content

Commit

Permalink
Lint code.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish committed Dec 12, 2024
1 parent c0fc330 commit b35cac6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ailment/expression.py
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,6 @@ def matches(self, other):
and self.bits == other.bits
)

matches = likes
__hash__ = TaggedObject.__hash__

def _hash_core(self):
Expand Down
4 changes: 2 additions & 2 deletions ailment/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint:disable=ungrouped-imports
# pylint:disable=ungrouped-imports,wrong-import-position
from __future__ import annotations
from typing import TypeAlias
import struct
Expand Down Expand Up @@ -117,4 +117,4 @@ def is_none_or_matchable(arg1, arg2, is_list=False):
return arg1 == arg2


from .expression import Expression # pylint:disable=wrong-import-position
from .expression import Expression # noqa: E402

0 comments on commit b35cac6

Please sign in to comment.