Skip to content

Commit

Permalink
fix: Default all refresh opt properties
Browse files Browse the repository at this point in the history
  • Loading branch information
peasee committed Oct 24, 2024
1 parent 1ab26e6 commit d518379
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spicepy/_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

@dataclass
class RefreshOpts:
refresh_sql: str
refresh_mode: str
refresh_jitter_max: str
refresh_sql: str = None
refresh_mode: str = None
refresh_jitter_max: str = None


HttpMethod = Literal["POST", "GET", "PUT", "HEAD", "POST"]
Expand Down

0 comments on commit d518379

Please sign in to comment.