sections.py 297 B

123456789
  1. """Defines all sections isort uses by default"""
  2. from typing import Tuple
  3. FUTURE: str = "FUTURE"
  4. STDLIB: str = "STDLIB"
  5. THIRDPARTY: str = "THIRDPARTY"
  6. FIRSTPARTY: str = "FIRSTPARTY"
  7. LOCALFOLDER: str = "LOCALFOLDER"
  8. DEFAULT: Tuple[str, ...] = (FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER)