Skip to content

Commit ae03e88

Browse files
fix formatting
1 parent 86ecf58 commit ae03e88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

wkcuber/mag.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from typing import List
66

7+
78
@total_ordering
89
class Mag:
910
def __init__(self, mag):
@@ -53,7 +54,7 @@ def scale_by(self, factor: int):
5354
self.mag = [mag * factor for mag in self.mag]
5455

5556
def divided(self, coord: List[int]):
56-
return [ c // m for c, m in zip(coord, self.mag)]
57+
return [c // m for c, m in zip(coord, self.mag)]
5758

5859
def divide_by(self, d: int):
5960
self.mag = [mag // d for mag in self.mag]

0 commit comments

Comments
 (0)