Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
kota-yata committed Jul 21, 2024
1 parent 7ba6cf5 commit bdcf08b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/http3_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ async def main(
if args.dtn:
configuration.idle_timeout = 1000000
configuration.initial_rtt = 1000000
configuration.congestion_control_algorithm = 'dtn'
configuration.congestion_control_algorithm = "dtn"

# load SSL certificate and key
if args.certificate is not None:
Expand Down
1 change: 1 addition & 0 deletions src/aioquic/quic/recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import math
from typing import Any, Callable, Dict, Iterable, List, Optional

from .congestion import cubic, dtn, reno # noqa
from .congestion.base import K_GRANULARITY, create_congestion_control
from .logger import QuicLoggerTrace
from .packet_builder import QuicDeliveryState, QuicSentPacket
Expand Down

0 comments on commit bdcf08b

Please sign in to comment.