mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
161 B
Python
7 lines
161 B
Python
class Point(object):
|
|
def __init__(self, x, y):
|
|
self.x = x
|
|
self.y = y
|
|
|
|
p = Point(x=1, yy=2) # TypeError: 'yy' is not a valid keyword argument
|