Skip to content

Commit

Permalink
Small bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
cruizgo committed Oct 19, 2022
1 parent b06b28a commit d669529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytheus/fancy_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def minimum(self, *args):
lenght_graph = len(self.graph)
max_given_n = max(args)
raise ValueError(
f'Given n_th is to large (n starts 0): {max_given_n+1=} > {lenght_graph=}')
f'Given n_th is to large (n starts 0): {max_given_n+1} >= {lenght_graph}')

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

0 comments on commit d669529

Please sign in to comment.