mirror of
https://github.com/github/codeql.git
synced 2026-01-22 19:02:59 +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
|