Skip to content

Commit

Permalink
Add missing close parenthesis to README example
Browse files Browse the repository at this point in the history
  • Loading branch information
flpcury authored and shadycuz committed Jan 1, 2023
1 parent 9a9d25e commit 0036934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class ParseExceptions(DeepVisitor):

exception_obj = node.exc

if isinstance(exception_obj, (ast.Call, ast.Name):
if isinstance(exception_obj, (ast.Call, ast.Name)):
name = (
exception_obj.id
if isinstance(exception_obj, ast.Name)
Expand Down

0 comments on commit 0036934

Please sign in to comment.