Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Grapejuice
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
BrinkerVII
Grapejuice
Commits
a700b5c3
Verified
Commit
a700b5c3
authored
2 years ago
by
BrinkerVII
Browse files
Options
Downloads
Patches
Plain Diff
Fix fast flag values getting converted
parent
0ba358ee
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/grapejuice/__init__.py
+1
-1
1 addition, 1 deletion
src/grapejuice/__init__.py
src/grapejuice_common/models/fast_flags.py
+2
-8
2 additions, 8 deletions
src/grapejuice_common/models/fast_flags.py
with
3 additions
and
9 deletions
src/grapejuice/__init__.py
+
1
−
1
View file @
a700b5c3
__version__
=
"
7.
1
.0
"
__version__
=
"
7.
2
.0
"
This diff is collapsed.
Click to expand it.
src/grapejuice_common/models/fast_flags.py
+
2
−
8
View file @
a700b5c3
...
...
@@ -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
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment