Skip to content

Commit da71219

Browse files
committed
flake8 stuff
1 parent 272ea69 commit da71219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stochman/discretized_manifold.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,9 @@ def connecting_geodesic(self, p1, p2, curve=None):
277277
"""
278278
device = p1.device
279279
if p1.ndim == 1:
280-
p1 = p1.unsqueeze(0) # 1xD
280+
p1 = p1.unsqueeze(0) # 1xD
281281
if p2.ndim == 1:
282-
p2 = p2.unsqueeze(0) # 1xD
282+
p2 = p2.unsqueeze(0) # 1xD
283283
B = p1.shape[0]
284284
if p1.shape != p2.shape:
285285
raise NameError('shape mismatch')

0 commit comments

Comments
 (0)