mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-14 02:58:16 +01:00
9 lines
297 B
Python
9 lines
297 B
Python
"""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)
|