Some imports were missing

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2020-12-21 16:04:12 +01:00
parent 0c4ef9da5a
commit 833c56755a
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
3 changed files with 13 additions and 13 deletions

View File

@ -1,11 +1,15 @@
# Copyright (C) 2020 by eichhornchen, ÿnérant
# SPDX-License-Identifier: GPL-3.0-or-later
from typing import Any, List, Optional, Tuple
from typing import Any, Tuple
from ipaddress import IPv6Address
from enum import Enum
from messages import Packet, TLV, HelloTLV, NeighbourTLV, Pad1TLV, PadNTLV, DataTLV, AckTLV, GoAwayTLV, WarningTLV
from threading import Thread
import curses
import re
import socket
from .messages import Packet, DataTLV
class Hazelnut:
"""

View File

@ -1,9 +1,11 @@
# Copyright (C) 2020 by eichhornchen, ÿnérant
# SPDX-License-Identifier: GPL-3.0-or-later
from typing import Any, List, Optional, Tuple
from typing import Any, List, Optional
from ipaddress import IPv6Address
from enum import Enum
import sys
class TLV:
"""

View File

@ -2,17 +2,11 @@
# SPDX-License-Identifier: GPL-3.0-or-later
import curses
import re
import socket
import sys
from argparse import ArgumentParser
from enum import Enum
from ipaddress import IPv6Address
from threading import Thread
from typing import Any, List, Optional, Tuple
from typing import Any
from squinnondation.term_manager import TermManager
from hazel import Hazelnut, Squirrel
from .hazel import Hazelnut, Squirrel, Worm
from .term_manager import TermManager
class Squinnondation: