const.py 157 B

123456
  1. from __future__ import annotations
  2. import datetime
  3. # Only retry requests for 20 seconds in the public api
  4. RETRY_TIMEDELTA = datetime.timedelta(seconds=20)