Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Applied black formatting #55

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d9830f3
Changed: Autoformatted `setup.py` with `black -l 120`
andrewasheridan Nov 30, 2019
9bef538
Changed: Autoformatted `bullet/__init__.py` with `black -l 120`
andrewasheridan Nov 30, 2019
8401051
Changed: Autoformatted `bullet/charDef.py` with `black -l 120`
andrewasheridan Nov 30, 2019
0377491
Changed: Autoformatted `bullet/client.py` with `black -l 120`
andrewasheridan Nov 30, 2019
3ccbfdb
Changed: Autoformatted `bullet/colors.py` with `black -l 120`
andrewasheridan Nov 30, 2019
b78e864
Changed: Autoformatted `bullet/cursor.py` with `black -l 120`
andrewasheridan Nov 30, 2019
f9c7fad
Changed: Autoformatted `bullet/emojis.py` with `black -l 120`
andrewasheridan Nov 30, 2019
00599bd
Changed: Autoformatted `bullet/keyhandler.py` with `black -l 120`
andrewasheridan Nov 30, 2019
9763f21
Changed: Autoformatted `bullet/styles.py` with `black -l 120`
andrewasheridan Nov 30, 2019
96233fc
Changed: Autoformatted `bullet/utils.py` with `black -l 120`
andrewasheridan Nov 30, 2019
eaa4012
Changed: Autoformatted `examples/check.py` with `black -l 120`
andrewasheridan Nov 30, 2019
e6d4f81
Changed: Autoformatted `examples/classic.py` with `black -l 120`
andrewasheridan Nov 30, 2019
005afca
Changed: Autoformatted `examples/colorful.py` with `black -l 120`
andrewasheridan Nov 30, 2019
8bcbe46
Changed: Autoformatted `examples/more.py` with `black -l 120`
andrewasheridan Nov 30, 2019
0bb158a
Changed: Autoformatted `examples/prompt.py` with `black -l 120`
andrewasheridan Nov 30, 2019
e924d17
Changed: Autoformatted `examples/pump.py` with `black -l 120`
andrewasheridan Nov 30, 2019
3235b7c
Changed: Autoformatted `examples/scrollbar.py` with `black -l 120`
andrewasheridan Nov 30, 2019
c18fbe3
Changed: Autoformatted `examples/star.py` with `black -l 120`
andrewasheridan Nov 30, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
from setuptools import setup, find_packages

setup(
name='bullet',
version='2.0.0',
description='Beautiful Python prompts made simple.',
long_description="Extensive support for Python list prompts \
formatting and colors",
Comment on lines -7 to -8
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually removed the \ and made this a single line string manually. This was the only change that I made manually.

url='https://github.com/Mckinsey666/bullets',
keywords = "cli list prompt customize colors",
author='Mckinsey666',
license='MIT',
packages=find_packages(),
)
name="bullet",
version="2.0.0",
description="Beautiful Python prompts made simple.",
long_description="Extensive support for Python list prompts formatting and colors",
url="https://github.com/Mckinsey666/bullets",
keywords="cli list prompt customize colors",
author="Mckinsey666",
license="MIT",
packages=find_packages(),
)