Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 25, 2023
1 parent a44617e commit 850c182
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions robyn/robyn.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ class Url:
class Identity:
claims: dict[str, str]


@dataclass
class QueryParams:
"""
Expand All @@ -73,7 +72,6 @@ class QueryParams:

queries: dict[str, list[str]]


def set(self, key: str, value: str) -> None:
"""
Sets the value of the query parameter with the given key.
Expand All @@ -85,7 +83,6 @@ class QueryParams:
"""
pass


def get(self, key: str, default: Optional[str]) -> Optional[str]:
"""
Gets the last value of the query parameter with the given key.
Expand All @@ -96,15 +93,13 @@ class QueryParams:
"""
pass


def empty(self) -> bool:
"""
Returns:
True if the query params are empty, False otherwise
"""
pass


def contains(self, key: str) -> bool:
"""
Returns:
Expand Down Expand Up @@ -134,7 +129,6 @@ class QueryParams:
"""
pass


def extend(self, other: QueryParams) -> None:
"""
Extends the query params with the other query params.
Expand All @@ -144,15 +138,13 @@ class QueryParams:
"""
pass


def to_dict(self) -> dict[str, list[str]]:
"""
Returns:
The query params as a dictionary
"""
pass


def __contains__(self, key: str) -> bool:
pass

Expand Down

0 comments on commit 850c182

Please sign in to comment.