mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-26 17:05:31 +01:00
10 lines
297 B
Python
10 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)
|