From 59bb3c6da902a3fb9d71524daf740655a45529a5 Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 26 Apr 2018 11:45:47 +0300 Subject: [PATCH] Use automatic formatters --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e1d8566..06bf25e 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ class PublishCommand(Command): @staticmethod def status(s): """Prints things in bold.""" - print('\033[1m{0}\033[0m'.format(s)) + print('\033[1m{}\033[0m'.format(s)) def initialize_options(self): pass @@ -38,7 +38,7 @@ class PublishCommand(Command): pass self.status('Building Source and Wheel (universal) distribution...') - os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)) + os.system('{} setup.py sdist bdist_wheel --universal'.format(sys.executable)) self.status('Uploading the package to PyPi via Twine...') os.system('twine upload dist/*')