Closed 0verbyte closed 6 years ago
Currently Slacker.py contains a few utility functions that should be refactored into respective classes. We should only have main in Slacker.py.
Slacker.py
main
Technically, it could actually suffice with only:
from slacker.common import main if __name__ == "__main__": main()
works for me, will do after #17
Currently
Slacker.py
contains a few utility functions that should be refactored into respective classes. We should only havemain
inSlacker.py
.