Skip to content

Module isort.sections

Defines all sections isort uses by default

None

View Source
"""Defines all sections isort uses by default"""

from typing import Tuple

FUTURE: str = "FUTURE"

STDLIB: str = "STDLIB"

THIRDPARTY: str = "THIRDPARTY"

FIRSTPARTY: str = "FIRSTPARTY"

LOCALFOLDER: str = "LOCALFOLDER"

DEFAULT: Tuple[str, ...] = (FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER)

Variables

DEFAULT
FIRSTPARTY
FUTURE
LOCALFOLDER
STDLIB
THIRDPARTY