sections.py 272 B

12345678
  1. """Defines all sections isort uses by default"""
  2. FUTURE: str = "FUTURE"
  3. STDLIB: str = "STDLIB"
  4. THIRDPARTY: str = "THIRDPARTY"
  5. FIRSTPARTY: str = "FIRSTPARTY"
  6. LOCALFOLDER: str = "LOCALFOLDER"
  7. DEFAULT: tuple[str, ...] = (FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER)