Skip to content

Commit 75159c7

Browse files
committed
Formatting
1 parent 4ebbbe9 commit 75159c7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mathics/core/atoms.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,9 +1157,7 @@ def __init__(self, value, dtype=None):
11571157
# TODO: to make it less expensive only look at first 100 bytes - ok? needed?
11581158
def __hash__(self):
11591159
if not self._hash:
1160-
self._hash = hash(
1161-
("NumericArray", self.value.shape, id(self.value))
1162-
)
1160+
self._hash = hash(("NumericArray", self.value.shape, id(self.value)))
11631161
return self._hash
11641162

11651163
def __str__(self) -> str:

0 commit comments

Comments
 (0)