diff options
author | Ceridwen <ceridwenv@gmail.com> | 2015-07-23 09:31:22 -0400 |
---|---|---|
committer | Ceridwen <ceridwenv@gmail.com> | 2015-07-23 09:31:22 -0400 |
commit | 43f27a00205f5b9b4a341a2c2e3f645dffe14904 (patch) | |
tree | 7d5c3ef57b7fb8dffa1639ceba0e1ef76e767355 /astroid/mixins.py | |
parent | 3c579ec31e996a143df2e33657c30eae0553c576 (diff) | |
download | astroid-git-43f27a00205f5b9b4a341a2c2e3f645dffe14904.tar.gz |
Fix missing warnings import
Diffstat (limited to 'astroid/mixins.py')
-rw-r--r-- | astroid/mixins.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/astroid/mixins.py b/astroid/mixins.py index d374a49f..ec7b7b69 100644 --- a/astroid/mixins.py +++ b/astroid/mixins.py @@ -18,6 +18,8 @@ """This module contains some mixins for the different nodes. """ +import warnings + from logilab.common.decorators import cachedproperty from astroid.exceptions import (AstroidBuildingException, InferenceError, |