diff --git a/src/phi/async_ldap/__init__.py b/src/phi/async_ldap/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/phi/ldap/async_client.py b/src/phi/async_ldap/client.py similarity index 100% rename from src/phi/ldap/async_client.py rename to src/phi/async_ldap/client.py diff --git a/src/phi/ldap/async_model.py b/src/phi/async_ldap/model.py similarity index 100% rename from src/phi/ldap/async_model.py rename to src/phi/async_ldap/model.py diff --git a/test/test_ldap_async_client.py b/test/test_async_ldap_client.py similarity index 98% rename from test/test_ldap_async_client.py rename to test/test_async_ldap_client.py index e903daf..33615fe 100644 --- a/test/test_ldap_async_client.py +++ b/test/test_async_ldap_client.py @@ -6,7 +6,7 @@ import logging import mock import pytest -from phi.ldap.async_client import ( +from phi.async_ldap.client import ( parse_host, checked_port, compose_dn_username, diff --git a/test/test_ldap_async_model.py b/test/test_async_ldap_model.py similarity index 99% rename from test/test_ldap_async_model.py rename to test/test_async_ldap_model.py index 6770352..e0f1f86 100644 --- a/test/test_ldap_async_model.py +++ b/test/test_async_ldap_model.py @@ -4,7 +4,7 @@ import asyncio from async_generator import asynccontextmanager import pytest -from phi.ldap.async_model import ( +from phi.async_ldap.model import ( get_class, recall, call_if_callable,