diff --git a/website/docs/sdks/python.md b/website/docs/sdks/python.md index f144dcbd04..fbf2d794a8 100644 --- a/website/docs/sdks/python.md +++ b/website/docs/sdks/python.md @@ -8,14 +8,14 @@ title: Python SDK ```python from UnleashClient import UnleashClient - client = UnleashClient( - url="", - app_name="my-python-app", - custom_headers={'Authorization': ''}) +client = UnleashClient( + url="", + app_name="my-python-app", + custom_headers={'Authorization': ''}) - client.initialize_client() +client.initialize_client() - client.is_enabled("unleash.beta.variants") +client.is_enabled("unleash.beta.variants") ``` ## Checking if a feature is enabled {#checking-if-a-feature-is-enabled}