pass int instead of float to

This commit is contained in:
Kwindla Hultman Kramer
2025-01-24 14:29:59 -08:00
parent 7c52736ff6
commit 007b2fe0c9

View File

@@ -309,7 +309,7 @@ class DailyRESTHelper:
"No Daily room specified. You must specify a Daily room in order a token to be generated."
)
expiration: float = time.time() + expiry_time
expiration: int = int(time.time() + expiry_time)
room_name = self.get_name_from_url(room_url)