facebookresearch / EGG

EGG: Emergence of lanGuage in Games
MIT License
286 stars 99 forks source link

fix import statements style to adhere pep8 #73

Closed robertodessi closed 4 years ago

robertodessi commented 4 years ago

Fixing import statements order as

  1. Standard library imports.
  2. Related third party imports.
  3. Local application/library specific imports.

Whenever possible I tried to sort each group alphabetically to help reading if something is being imported or not

see [here] (https://www.python.org/dev/peps/pep-0008/#imports)