Remove unused import. Groome code to pep8 style.
Updated standard-inventory-local.py file
1 new commit added
It is a bit not easy to review PR with two commits. Two commits change the same code twice.
Second commit:
54 if __name__ == '__main__': 55 - sys.exit(main()) 56 + main()
First commit:
50 - sys.exit(main(sys.argv)) 51 + sys.exit(main())
This PR has two logicaly independent commits. One of the PEP8, other commit fixes exceptions.
Such PR requires a more time to review.
It is a bit not easy to review PR with two commits. Two commits change the same code twice. Second commit: 54 if name == 'main': 55 - sys.exit(main()) 56 + main() First commit: 50 - sys.exit(main(sys.argv)) 51 + sys.exit(main()) This PR has two logicaly independent commits. One of the PEP8, other commit fixes exceptions. Such PR requires a more time to review.
It is a bit not easy to review PR with two commits. Two commits change the same code twice. Second commit: 54 if name == 'main': 55 - sys.exit(main()) 56 + main()
First commit: 50 - sys.exit(main(sys.argv)) 51 + sys.exit(main())
This PR has two logicaly independent commits. One of the PEP8, other commit fixes exceptions. Such PR requires a more time to review.
Updated, now there only Stick to the pep8 style standard-inventory-local commit
Stick to the pep8 style standard-inventory-local
Pull-Request has been closed by astepano
Remove unused import.
Groome code to pep8 style.