blob: f59db692611df0c6649c346a4f6d38dc6fdbc09d (
plain)
1
2
3
4
5
6
7
8
9
|
"""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)
|