Commit Graph
9 Commits
Author SHA1 Message Date
Roman Dobosz cd6376f821 removing doom env 2018-05-10 09:19:32 +02:00
Roman Dobosz 5d47368972 Celaning up coach code + removing play/Human agent 2018-05-10 09:07:24 +02:00
Roman Dobosz 50d38b4b98 Moved main module to cli 2018-05-08 11:01:57 +02:00
Roman Dobosz 26a2f94f43 Added pyyaml dependecy to setup/requirements 2018-04-27 14:48:43 +02:00
Roman Dobosz 676c69e391 Moved coach to its top level module. 2018-04-27 13:25:58 +02:00
Roman Dobosz 7e61bb5685 Removed unnecessary files 2018-04-25 11:59:05 +02:00
Roman Dobosz 5c53f9be02 Added missing imports, correct usages 2018-04-24 13:33:10 +02:00
Roman Dobosz 42a9ec132d Merge branch 'master' into imports 2018-04-24 07:43:04 +02:00
Roman Dobosz 1b095aeeca Cleanup imports.
Till now, most of the modules were importing all of the module objects
(variables, classes, functions, other imports) into module namespace,
which potentially could (and was) cause of unintentional use of class or
methods, which was indirect imported.

With this patch, all the star imports were substituted with top-level
module, which provides desired class or function.

Besides, all imports where sorted (where possible) in a way pep8[1]
suggests - first are imports from standard library, than goes third
party imports (like numpy, tensorflow etc) and finally coach modules.
All of those sections are separated by one empty line.

[1] https://www.python.org/dev/peps/pep-0008/#imports
2018-04-13 09:58:40 +02:00