Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • fce6303f651e0b675bce6265292a381ad4680257
  • 12.0-evo-202003 par défaut
  • 14-RV-20250324
  • 14-RV-20240830
  • 14-RV-20231222
  • 12-RV-Bug_ecrasement_date_radiation
  • 12-RV-revision-staff
  • 12-RV-copadev
  • 12-RV-Correctif-open-instagram
  • 12-RV-Tree-Coop-Ajout-effectif
  • 12.0-RV-Instagram
  • 12.0-RV-segment_visibility
  • 12.0 protégée
  • 12.0-RV-Abonnements
14 résultats

scop_membership.py

Blame
  • Bifurcation depuis Le Filament / Confédération Générale des SCOP / cgscop_partner
    Le projet source a une visibilité limitée.
    .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