8000 typo fixed (broke building documentation) · matplotlib/matplotlib@2cbb326 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2cbb326

Browse files
committed
typo fixed (broke building documentation)
1 parent 617b622 commit 2cbb326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/sankey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def add(self, patchlabel='', flows=None, orientations=None, labels='',
539539
"specified tolerance." % (connect[0], prior))
540540
flow_error = (self.diagrams[prior].flows[connect[0]] +
541541
flows[connect[1]])
542-
if abs(flow_error) >r self.tolerance:
542+
if abs(flow_error) > self.tolerance:
543543
raise ValueError(
544544
"The scaled sum of the connected flows is %f, which is not "
545545
"within the tolerance (%f)." % (flow_error, self.tolerance))

0 commit comments

Comments
 (0)
0