Skip to content

Commit

Permalink
small fix for deque example
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Sep 28, 2023
1 parent 299deb2 commit 1d09476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ small file transfer.

.. testcode:: cfdp

from typing import Deque
from collections import deque
from spacepackets.cfdp.conf import ByteFieldU8
from spacepackets.cfdp.defs import ChecksumType, TransmissionMode
from spacepackets.cfdp.pdu import (
Expand All @@ -72,7 +72,7 @@ small file transfer.
LOCAL_ID = ByteFieldU8(1)
REMOTE_ID = ByteFieldU8(2)

file_transfer_queue = Deque()
file_transfer_queue = deque()
src_name = "/tmp/src-file.txt"
dest_name = "/tmp/dest-file.txt"
file_data = "Hello World!"
Expand Down

0 comments on commit 1d09476

Please sign in to comment.