Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
sir-sigurd committed Jun 14, 2024
1 parent c97f620 commit 574de57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions api/python/quilt3/admin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
APIs for Quilt administrators. 'Registry' refers to Quilt stack backend services, including identity management.
"""

# This wraps code generated by aridne-codegen to provide a more user-friendly API.
from datetime import datetime
from typing import Annotated, Any, List, Literal, Optional, Union
Expand All @@ -18,7 +19,6 @@ class ManagedRole:
typename__: Literal["ManagedRole"]



@pydantic.dataclasses.dataclass
class UnmanagedRole:
id: str
Expand Down Expand Up @@ -99,7 +99,9 @@ def create_user(name: str, email: str, role: str, extra_roles: Optional[List[str
"""

_handle_errors(
_get_client().create_user(input=_graphql_client.UserInput(name=name, email=email, role=role, extraRoles=extra_roles))
_get_client().create_user(
input=_graphql_client.UserInput(name=name, email=email, role=role, extraRoles=extra_roles)
)
)


Expand Down

0 comments on commit 574de57

Please sign in to comment.