diff options
Diffstat (limited to 'astroid/const.py')
-rw-r--r-- | astroid/const.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/astroid/const.py b/astroid/const.py index dd0e29a3..795c3c1b 100644 --- a/astroid/const.py +++ b/astroid/const.py @@ -13,6 +13,6 @@ class Context(enum.Enum): Del = 3 -Load: Context = Context.Load -Store: Context = Context.Store -Del: Context = Context.Del +Load = Context.Load +Store = Context.Store +Del = Context.Del |