Skip to content

Commit

Permalink
Fix wrong return type
Browse files Browse the repository at this point in the history
  • Loading branch information
stroxler committed Jan 25, 2022
1 parent 264e26a commit 8a083b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcst/codemod/commands/convert_type_comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def leave_ClassDef(
self,
original_node: cst.ClassDef,
updated_node: cst.ClassDef,
) -> None:
) -> cst.ClassDef:
"""
Keep track of when we are and are not inside of classes, to help with
heuristics to handle methods correctly.
Expand Down

0 comments on commit 8a083b2

Please sign in to comment.