diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-19 10:02:05 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-19 21:40:08 +0200 |
commit | 24f9672270908b76c62448c7f02306deb5b366a4 (patch) | |
tree | a2c402c8aabe55cc8de101b9307d407aada91856 /astroid/brain/brain_boto3.py | |
parent | 318227465c67f21354b1b8b885c415463d6073f5 (diff) | |
download | astroid-git-24f9672270908b76c62448c7f02306deb5b366a4.tar.gz |
Create a file for the global manager defined in astroid.__init__.py
Diffstat (limited to 'astroid/brain/brain_boto3.py')
-rw-r--r-- | astroid/brain/brain_boto3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astroid/brain/brain_boto3.py b/astroid/brain/brain_boto3.py index aff48fbf..64431f14 100644 --- a/astroid/brain/brain_boto3.py +++ b/astroid/brain/brain_boto3.py @@ -2,7 +2,8 @@ # For details: https://github.com/PyCQA/astroid/blob/master/LICENSE """Astroid hooks for understanding boto3.ServiceRequest()""" -from astroid import MANAGER, extract_node +from astroid import extract_node +from astroid.astroid_manager import MANAGER from astroid.scoped_nodes import ClassDef BOTO_SERVICE_FACTORY_QUALIFIED_NAME = "boto3.resources.base.ServiceResource" |