Open
Description
In my code I have an area that calls
commands = []
commands.append("blahblahblah")
The .appends() is triggering futurize to import standard_library
and call install_aliases
However, I can not do this where I work because it borks a lot of things.
Is there a reason why .appends(), .extends(), etc is triggering this that I am not aware of?
I got around the complaint by using
commands += ["blahblahblah"]