mirror of
https://github.com/rany2/edge-tts
synced 2024-11-22 01:45:02 +00:00
dc8ac2ea7a
This should help when a user might have his clock skewed by more than 5 minutes. The server allows for a bit more than ~5 minutes of skew. Signed-off-by: rany <rany2@riseup.net>
26 lines
556 B
INI
26 lines
556 B
INI
[mypy]
|
|
disallow_any_unimported = True
|
|
disallow_any_expr = False
|
|
disallow_any_decorated = True
|
|
disallow_any_explicit = False
|
|
disallow_any_generics = True
|
|
disallow_subclassing_any = True
|
|
|
|
disallow_untyped_calls = True
|
|
disallow_untyped_defs = True
|
|
disallow_incomplete_defs = True
|
|
check_untyped_defs = True
|
|
disallow_untyped_decorators = True
|
|
|
|
warn_redundant_casts = True
|
|
warn_unused_ignores = True
|
|
warn_no_return = True
|
|
warn_return_any = True
|
|
warn_unreachable = True
|
|
|
|
strict_equality = True
|
|
strict = True
|
|
|
|
[mypy-edge_tts.voices]
|
|
disallow_any_decorated = False
|