Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 788d17e4ae6bc0f1163c92492ae49c1d2527c8e1
  • 16.0 par défaut protégée
  • 18.0
  • 17.0
  • 14.0 protégée
  • 15.0 protégée
  • 12.0 protégée
  • 10.0 protégée
8 résultats

LICENSE

Blame
  • Ce projet est sous licence Apache License 2.0. En savoir plus
    .flake8 356 o
    [flake8]
    max-line-length = 88
    max-complexity = 16
    # B = bugbear
    # B9 = bugbear opinionated (incl line length)
    select = C,E,F,W,B,B9
    # E203: whitespace before ':' (black behaviour)
    # E501: flake8 line length (covered by bugbear B950)
    # W503: line break before binary operator (black behaviour)
    ignore = E203,E501,W503
    per-file-ignores=
        __init__.py:F401