We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d9b02 commit 36018b3Copy full SHA for 36018b3
fastapi_featureflags/main.py
@@ -26,7 +26,7 @@ def load_conf_from_json(conf_from_json):
26
27
@staticmethod
28
def reload_feature_flags():
29
- FeatureFlags.features = {}
+ FeatureFlags.features.clear()
30
if FeatureFlags.conf_from_url:
31
FeatureFlags.load_conf_from_url(FeatureFlags.conf_from_url)
32
return True
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="fastapi_featureflags",
8
- version="0.0.1",
+ version="0.1",
9
author="Tomas Pytel",
10
author_email="pytlicek@gmail.com",
11
description="Feature Flags for FastAPI",
0 commit comments