Generate a Python package project using the Python Cookiecutter package
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

.isort.cfg 244B

12345678910
  1. [settings]
  2. line_length = 88
  3. known_first_party = {{ cookiecutter.project_slug }}
  4. known_third_party = six
  5. multi_line_output = 3
  6. # length_sort = 1
  7. # balanced_wrapping = True
  8. force_grid_wrap = 0
  9. include_trailing_comma = True
  10. use_parentheses = True