Skip to content

Commit

Permalink
chore: appease pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Nov 1, 2023
1 parent 21e5ae7 commit c572295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/awkward/_kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


class KernelError(Protocol):
filename: bytes | None # pylint: disable=E0602
filename: bytes | None
str: bytes | None
attempt: int
id: int
Expand Down
2 changes: 1 addition & 1 deletion src/awkward/types/type.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def copy(self, *, parameters: JSONMapping | None | Sentinel = UNSET) -> Self:

@property
def parameters(self) -> JSONMapping:
if self._parameters is None: # pylint: disable=E0203
if self._parameters is None:
self._parameters = {}
return self._parameters

Expand Down

0 comments on commit c572295

Please sign in to comment.