Skip to content

Commit b415224

Browse files
committed
Fix constructor without self
1 parent 8a95946 commit b415224

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ def f(self):
11931193

11941194
def test_getmembers_static(self):
11951195
class Foo:
1196-
def __init__(bar):
1196+
def __init__(self, bar):
11971197
self._bar = bar
11981198

11991199
@property

0 commit comments

Comments
 (0)