Skip to content

Commit e4ec363

Browse files
Fix issue probably-meant-fstring found at https://codereview.doctor (#5726)
1 parent 162ad6c commit e4ec363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def align_minibatches(batches=None):
461461
else:
462462
for b in batches:
463463
if not isinstance(b, Minibatch):
464-
raise TypeError("{b} is not a Minibatch")
464+
raise TypeError(f"{b} is not a Minibatch")
465465
for rng in Minibatch.RNG[id(b)]:
466466
rng.seed()
467467

0 commit comments

Comments
 (0)