Generate a Python package project using the Python Cookiecutter package
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

.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