From 39f317ba4001095d23e53e06188de28d0718971f Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Mon, 13 Feb 2023 16:22:39 +0100 Subject: [PATCH] Rename bfxapi.utils.camel_and_snake_case_adapters to bfxapi.utils.camel_and_snake_case_helpers. --- bfxapi/rest/endpoints/rest_merchant_endpoints.py | 2 +- ...d_snake_case_adapters.py => camel_and_snake_case_helpers.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename bfxapi/utils/{camel_and_snake_case_adapters.py => camel_and_snake_case_helpers.py} (100%) diff --git a/bfxapi/rest/endpoints/rest_merchant_endpoints.py b/bfxapi/rest/endpoints/rest_merchant_endpoints.py index dd760c5..8290a2c 100644 --- a/bfxapi/rest/endpoints/rest_merchant_endpoints.py +++ b/bfxapi/rest/endpoints/rest_merchant_endpoints.py @@ -3,7 +3,7 @@ from decimal import Decimal from .. types import * from .. middleware import Middleware -from ... utils.camel_and_snake_case_adapters import to_snake_case_keys, to_camel_case_keys +from ...utils.camel_and_snake_case_helpers import to_snake_case_keys, to_camel_case_keys _CustomerInfo = TypedDict("_CustomerInfo", { "nationality": str, "resid_country": str, "resid_city": str, diff --git a/bfxapi/utils/camel_and_snake_case_adapters.py b/bfxapi/utils/camel_and_snake_case_helpers.py similarity index 100% rename from bfxapi/utils/camel_and_snake_case_adapters.py rename to bfxapi/utils/camel_and_snake_case_helpers.py