Remove "from XX import *"

Issue #10 resolved
andrew_peterson repo owner created an issue

We should get rid of the generic import statements that end in import *. This makes it tricky to see where specific functions are imported from. For example, it is hard to figure out where IO comes from in the amp/init.py file as there are several blanket from XX import * statements, in the header. One has to manually dig through each file to find it, and worse, there is a chance that IO shows up in multiple files, which can lead to confusion and bugs.

Comments (1)

  1. Log in to comment