Skip to content

Commit

Permalink
Fix postgresgatewayAcl
Browse files Browse the repository at this point in the history
  • Loading branch information
erlendvollset committed Oct 8, 2024
1 parent c81b6b6 commit 1a8c90a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cognite/client/_api/postgres_gateway/users.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

from collections.abc import Iterator
from typing import TYPE_CHECKING, Sequence, overload
from collections.abc import Iterator, Sequence
from typing import TYPE_CHECKING, overload

from cognite.client._api_client import APIClient
from cognite.client._constants import DEFAULT_LIMIT_READ
Expand Down
1 change: 0 additions & 1 deletion cognite/client/data_classes/capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,6 @@ class PostgresGatewayAcl(Capability):
_capability_name = "postgresGatewayAcl"
actions: Sequence[Action]
scope: AllScope = field(default_factory=AllScope)
allow_unknown: bool = field(default=False, compare=False, repr=False)

class Action(Capability.Action): # type: ignore [misc]
Read = "READ"
Expand Down

0 comments on commit 1a8c90a

Please sign in to comment.