Skip to content

Commit 591c23c

Browse files
committed
MAINT: Fix flake8 errors
1 parent a3a817e commit 591c23c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pydra/utils/hash.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ def hash_single(obj: object, cache: Cache) -> Hash:
9999

100100
@runtime_checkable
101101
class HasBytesRepr(Protocol):
102-
def __bytes_repr__(self, cache: Cache) -> Iterator[bytes]: ... # pragma: no cover
102+
def __bytes_repr__(self, cache: Cache) -> Iterator[bytes]:
103+
pass # pragma: no cover
103104

104105

105106
@singledispatch

0 commit comments

Comments
 (0)