Skip to content

Commit

Permalink
Revert type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Aug 23, 2024
1 parent 97fe1b0 commit 0a47fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyresample/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2121,8 +2121,8 @@ def update_hash(self, existing_hash: Optional[_Hash] = None) -> _Hash:
if existing_hash is None:
existing_hash = hashlib.sha1() # nosec: B324
existing_hash.update(self.crs_wkt.encode('utf-8'))
existing_hash.update(np.array(self.shape))
existing_hash.update(np.array(self.area_extent))
existing_hash.update(np.array(self.shape)) # type: ignore[arg-type]
existing_hash.update(np.array(self.area_extent)) # type: ignore[arg-type]
return existing_hash

@daskify_2in_2out
Expand Down

0 comments on commit 0a47fd3

Please sign in to comment.