Files
openide/python/testData/quickFixes/PyRemoveUnusedLocalQuickFixTest/removeAssignmentStatementTarget_after.py
andrey.matveev 973e8d2a1b [PY-17901] Fix deleting code with side effects
GitOrigin-RevId: 099724adfd94a160e9a40df78dd621ca4f8f18e6
2020-08-17 11:13:32 +00:00

4 lines
125 B
Python

class MyClass(object):
def __init__(self, **kwargs):
kwargs.pop("stuff", None)
print("that's all folks!")