guilatrova / tryceratops

A linter to prevent exception handling antipatterns in Python (limited only for those who like dinosaurs).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Documentation for TC003 contains f-string error

cfxegbert opened this issue · comments

super().__init__(f"The argument '{a}' should be even")

Should be:
super().__init__(f"The argument '{arg}' should be even")

Fixed, thank you! :)