Skip to content

Commit 53622b1

Browse files
authored
fix error message typo
1 parent d497f37 commit 53622b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/check-deprecated.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ class C:
329329
class C2(C): ...
330330

331331
C() # E: function __main__.C.__init__ is deprecated: call `make_c()` instead
332-
C2() # E: function.__main__.C.__init__ is deprecated: call `make_c()` instead
332+
C2() # E: function __main__.C.__init__ is deprecated: call `make_c()` instead
333333

334334
class D:
335335
@deprecated("call `make_d()` instead")

0 commit comments

Comments
 (0)