Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Use black for formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Arjun Naik <arjun.rn@gmail.com>
  • Loading branch information
arjunrn committed Feb 24, 2020
1 parent d38d2c1 commit c76fbe3
Show file tree
Hide file tree
Showing 10 changed files with 498 additions and 431 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then sudo easy_install pip; fi
language: python
python:
- "3.4"
- "3.8"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install flake8
- pip install black
script:
- python setup.py test
- python setup.py flake8
- black --check .
after_success:
- coveralls
2 changes: 1 addition & 1 deletion piu/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.14'
__version__ = "0.14"
2 changes: 1 addition & 1 deletion piu/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import piu.cli

if __name__ == '__main__':
if __name__ == "__main__":
piu.cli.main()

0 comments on commit c76fbe3

Please sign in to comment.