mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Fix typo in example
This commit is contained in:
@@ -14,7 +14,7 @@ class C(A):
|
||||
self.c = 2
|
||||
|
||||
class D(B,C):
|
||||
def __init__(self): # GOOD: Each method calls super, so each init method runs once. self.stat =e will be set to "B".
|
||||
def __init__(self): # GOOD: Each method calls super, so each init method runs once. self.state will be set to "B".
|
||||
super().__init__()
|
||||
self.d = 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user