Skip to content

Commit

Permalink
feat: Refactor base HTTP client to enable request limits to work
Browse files Browse the repository at this point in the history
Replace `dataclass()` with `dataclass`
  • Loading branch information
akalex committed Mar 11, 2024
1 parent 7dd580a commit ae1ab7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions async_customerio/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dataclasses import dataclass


@dataclass()
@dataclass
class RequestTimeout:
"""
Request timeout configuration.
Expand All @@ -18,7 +18,7 @@ class RequestTimeout:
timeout: t.Optional[float] = None


@dataclass()
@dataclass
class RequestLimits:
"""
Configuration for request limits.
Expand Down

0 comments on commit ae1ab7f

Please sign in to comment.