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

Commit

Permalink
Merge pull request #45 from zalando-stups/black
Browse files Browse the repository at this point in the history
Use black for formatting
  • Loading branch information
mikkeloscar committed Feb 25, 2020
2 parents d38d2c1 + c76fbe3 commit e8fc05f
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 e8fc05f

Please sign in to comment.