Skip to content

Commit 89469ac

Browse files
sobolevnJelleZijlstra
authored andcommitted
Fix CI
1 parent 25c0631 commit 89469ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/stubgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ def process_member_expr_decorator(
889889
if expr.name == "abstractproperty":
890890
self.import_tracker.require_name(expr.expr.name)
891891
self.add_decorator("property")
892-
self.add_decorator(f"{expr.expr.name}.abstractmethod"))
892+
self.add_decorator(f"{expr.expr.name}.abstractmethod")
893893
else:
894894
self.import_tracker.require_name(expr.expr.name)
895895
self.add_decorator(f"{expr.expr.name}.{expr.name}")

0 commit comments

Comments
 (0)