Skip to content

Commit c173ae8

Browse files
committed
Fix pre commit
1 parent c78ed5e commit c173ae8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

permit/api/user_invites.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from typing import List, Optional, Union
2-
31
from ..utils.pydantic_version import PYDANTIC_VERSION
42

53
if PYDANTIC_VERSION < (2, 0):
@@ -10,7 +8,6 @@
108
from .base import (
119
BasePermitApi,
1210
SimpleHttpClient,
13-
pagination_params,
1411
)
1512
from .context import ApiContextLevel, ApiKeyAccessLevel
1613
from .models import (
@@ -48,4 +45,4 @@ async def approve(self, user_invite_id: str, approve_data: ElementsUserInviteApp
4845
f"/{user_invite_id}/approve",
4946
model=ElementsUserInviteRead,
5047
json=approve_data,
51-
)
48+
)

0 commit comments

Comments
 (0)