77 AsyncApiTokensService ,
88)
99from mpt_api_client .resources .accounts .licensees import AsyncLicenseesService , LicenseesService
10+ from mpt_api_client .resources .accounts .modules import AsyncModulesService , ModulesService
1011from mpt_api_client .resources .accounts .sellers import AsyncSellersService , SellersService
1112from mpt_api_client .resources .accounts .user_groups import (
1213 AsyncUserGroupsService ,
@@ -34,6 +35,7 @@ def async_accounts(async_http_client):
3435 ("licensees" , LicenseesService ),
3536 ("user_groups" , UserGroupsService ),
3637 ("api_tokens" , ApiTokensService ),
38+ ("modules" , ModulesService ),
3739 ],
3840)
3941def test_accounts_properties (accounts , property_name , expected_service_class ):
@@ -53,6 +55,7 @@ def test_accounts_properties(accounts, property_name, expected_service_class):
5355 ("licensees" , AsyncLicenseesService ),
5456 ("user_groups" , AsyncUserGroupsService ),
5557 ("api_tokens" , AsyncApiTokensService ),
58+ ("modules" , AsyncModulesService ),
5659 ],
5760)
5861def test_async_accounts_properties (async_accounts , property_name , expected_service_class ):
0 commit comments