bchao1 / bullet

🚅 Interactive prompts made simple. Build a prompt like stacking blocks.
https://pypi.org/project/bullet/
MIT License
3.55k stars 113 forks source link

consider adopting code formatter #17

Open cs01 opened 5 years ago

cs01 commented 5 years ago

I suggest black, but any autoformatter will provide the benefits advertised by black

Formatting becomes transparent after a while and you can focus on the content instead. Black makes code review faster by producing the smallest diffs possible.

To preserve formatting and not let black modify it, you can add

# fmt: off

my_aligned_code =     True

# fmt: on