Your IP : 216.73.216.196


Current Path : /opt/alt/python37/lib/python3.7/site-packages/requirements_detector/
Upload File :
Current File : //opt/alt/python37/lib/python3.7/site-packages/requirements_detector/__compat__.py

# Various shims to deal with node renames between astroid versions - astroid 2.0 renamed
# some of the nodes used by this library so for backwards compatibility, old names are
# translated to new.

try:
	from astroid import Call
except ImportError:
	from astroid import CallFunc as Call


try:
	from astroid import AssignName
except ImportError:
	from astroid import AssName as AssignName