Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored and JelleZijlstra committed Mar 30, 2023
1 parent 25c0631 commit 89469ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/stubgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def process_member_expr_decorator(
if expr.name == "abstractproperty":
self.import_tracker.require_name(expr.expr.name)
self.add_decorator("property")
self.add_decorator(f"{expr.expr.name}.abstractmethod"))
self.add_decorator(f"{expr.expr.name}.abstractmethod")
else:
self.import_tracker.require_name(expr.expr.name)
self.add_decorator(f"{expr.expr.name}.{expr.name}")
Expand Down

0 comments on commit 89469ac

Please sign in to comment.