check imports

Issue #16 resolved
Reimar Bauer created an issue

sometimes we have e.g,

import dateutils
from dateutils import ... as ...

We could remove all not needed import statements

Comments (5)

  1. Joern Ungermann

    What is the desired style for imports? Shall we always use from xyc import a,b,c or use import xyz xyz.a()

    Is there a PEP about this? Personally I like xyz.a() as one sees where the function is defined. Some people use a IDE for that...?

  2. Log in to comment