Your IP : 216.73.216.213


Current Path : /proc/242857/root/opt/alt/python37/lib/python3.7/site-packages/requirements_detector/
Upload File :
Current File : //proc/242857/root/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