summaryrefslogtreecommitdiff
path: root/python/testData/quickFixes/PyMoveAttributeToInitQuickFixTest/moveToInit_after.py
blob: 9a83f676bfdc733e119b26b25b89a2192e6d5363 (plain)
1
2
3
4
5
6
7
8
9
10
__author__ = 'ktisha'


class A:
    def __init__(self):
        self.b = 1
        self._a = 1

    def foo(self):
        c = 1