From f2629dfdbcac6007d1e343243e2212fcfb80ad8a Mon Sep 17 00:00:00 2001 From: Floyd Date: Wed, 13 Jul 2022 03:33:58 -0400 Subject: [PATCH] Fixing indentation of Python example (#1794) --- website/docs/sdks/python.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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}