statnot
statnot copied to clipboard
Clean up codebase
- Update for python3 compatibility (should still work with python >=2.6)
- Correctly indented indents
- Updated
"%s" % (var)to"{}".format(var) - Updated
printtoprint() - Used triple quotes for help output
- PEP 8 spacing between functions
- Shortened
if var == True:toif var: