Skip to content

Commit 9ae018c

Browse files
committed
bump decider + lint
1 parent 88e34ac commit 9ae018c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

reddit_decider/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,9 @@ def get_float(self, feature_name: str, default: float = 0.0) -> float:
736736
737737
:return: the float value of the dyanimc config if it is active/exists, :code:`default` parameter otherwise.
738738
"""
739-
return self._get_dynamic_config_value(feature_name, default, float, self._internal.get_float)
739+
return self._get_dynamic_config_value(
740+
feature_name, default, float, self._internal.get_float
741+
)
740742

741743
def get_string(self, feature_name: str, default: str = "") -> str:
742744
"""Fetch a Dynamic Configuration of string type.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements-transitive.txt
22
baseplate==2.0.0a1
33
black==21.4b2
4-
reddit-decider==1.2.29
4+
reddit-decider==1.2.30
55
flake8==3.9.1
66
mypy==0.790
77
pyramid==2.0 # required for `from baseplate.frameworks.pyramid import BaseplateRequest` which calls `import pyramid.events`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
install_requires=[
2020
"baseplate>=2.0.0a1,<3.0",
2121
"reddit-edgecontext>=1.0.0a3,<2.0",
22-
"reddit-decider~=1.2.29",
22+
"reddit-decider~=1.2.30",
2323
"typing_extensions>=3.10.0.0,<5.0",
2424
],
2525
package_data={"reddit_experiments": ["py.typed"]},

0 commit comments

Comments
 (0)