Netflix-Skunkworks / aardvark

Aardvark is a multi-account AWS IAM Access Advisor API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove Python 2 compatibility code

patricksanders opened this issue · comments

We're no longer compatible with Python 2, so we can remove all of the compatibility workarounds.

For example:

try: # Python 2
raw_input
except NameError: # Python 3
raw_input = input
try: # Python 2
unicode
except NameError: # Python 3
unicode = str

This block can be removed and the code updated to use str and input.