Skip to content
Snippets Groups Projects
Verified Commit a700b5c3 authored by BrinkerVII's avatar BrinkerVII :snail:
Browse files

Fix fast flag values getting converted

parent 0ba358ee
No related branches found
No related tags found
No related merge requests found
__version__ = "7.1.0"
__version__ = "7.2.0"
......@@ -3,7 +3,7 @@ import logging
import os
from itertools import chain
from pathlib import Path
from typing import List, Dict, Optional, Iterable, Union
from typing import List, Dict, Optional, Iterable, Any
from grapejuice_common import variables
......@@ -11,13 +11,7 @@ LOG = logging.getLogger(__name__)
FastFlagKeyType = str
FastFlagValueType = Union[
int,
str,
bool,
List[int],
List[str]
]
FastFlagValueType = Any
FastFlagDictionary = Dict[FastFlagKeyType, FastFlagValueType]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment