Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit bbb4b27

Browse files
committed
created_at = None to fix type issues
1 parent efce92b commit bbb4b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seamapi/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ class AccessCode:
194194
access_code_id: str
195195
device_id: str
196196
type: str
197-
code: Optional[str] = ""
198-
created_at: str
197+
code: Optional[str] = None
198+
created_at: str = None
199199
errors: List[Dict[str, Any]]
200200
warnings: List[Dict[str, Any]]
201201
starts_at: Optional[str] = None

0 commit comments

Comments
 (0)