One more field that should be marked optional

This commit is contained in:
sparky8512 2022-09-09 15:23:25 -07:00 committed by GitHub
parent ab0fba7b88
commit c37dbdfaa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -419,7 +419,7 @@ HistGeneralDict = TypedDict("HistGeneralDict", {"samples": int, "end_counter": i
HistBulkDict = TypedDict(
"HistBulkDict", {
"pop_ping_drop_rate": Sequence[float],
"pop_ping_latency_ms": Sequence[float],
"pop_ping_latency_ms": Sequence[Optional[float]],
"downlink_throughput_bps": Sequence[float],
"uplink_throughput_bps": Sequence[float],
"snr": Sequence[Optional[float]],