Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
cs01 committed Jan 28, 2019
1 parent 078a984 commit 40c12e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions get-pipx.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
import sys

assert sys.version_info >= (3, 6, 0), "Python 3.6+ is required"

import argparse
Expand Down
1 change: 1 addition & 0 deletions pipx/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

assert sys.version_info >= (3, 6, 0), "Python 3.6+ is required"

import argparse
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-

import sys

assert sys.version_info >= (3, 6, 0), "Python 3.6+ is required"

import io
Expand Down

0 comments on commit 40c12e7

Please sign in to comment.