Skip to content

Commit d669529

Browse files
committed
Small bug fixed.
1 parent b06b28a commit d669529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytheus/fancy_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def minimum(self, *args):
412412
lenght_graph = len(self.graph)
413413
max_given_n = max(args)
414414
raise ValueError(
415-
f'Given n_th is to large (n starts 0): {max_given_n+1=} > {lenght_graph=}')
415+
f'Given n_th is to large (n starts 0): {max_given_n+1} >= {lenght_graph}')
416416

417417
if type(delind) is np.int64: # makes sure that we can iterate by return
418418
return self.edges[delind]

0 commit comments

Comments
 (0)