Some imports were missing
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
0c4ef9da5a
commit
833c56755a
|
@ -1,11 +1,15 @@
|
||||||
# Copyright (C) 2020 by eichhornchen, ÿnérant
|
# Copyright (C) 2020 by eichhornchen, ÿnérant
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# 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 ipaddress import IPv6Address
|
||||||
from enum import Enum
|
|
||||||
from messages import Packet, TLV, HelloTLV, NeighbourTLV, Pad1TLV, PadNTLV, DataTLV, AckTLV, GoAwayTLV, WarningTLV
|
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
|
import curses
|
||||||
|
import re
|
||||||
|
import socket
|
||||||
|
|
||||||
|
from .messages import Packet, DataTLV
|
||||||
|
|
||||||
|
|
||||||
class Hazelnut:
|
class Hazelnut:
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
# Copyright (C) 2020 by eichhornchen, ÿnérant
|
# Copyright (C) 2020 by eichhornchen, ÿnérant
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# 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 ipaddress import IPv6Address
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
class TLV:
|
class TLV:
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -2,17 +2,11 @@
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import curses
|
import curses
|
||||||
import re
|
|
||||||
import socket
|
|
||||||
import sys
|
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
from enum import Enum
|
from typing import Any
|
||||||
from ipaddress import IPv6Address
|
|
||||||
from threading import Thread
|
|
||||||
from typing import Any, List, Optional, Tuple
|
|
||||||
|
|
||||||
from squinnondation.term_manager import TermManager
|
from .hazel import Hazelnut, Squirrel, Worm
|
||||||
from hazel import Hazelnut, Squirrel
|
from .term_manager import TermManager
|
||||||
|
|
||||||
|
|
||||||
class Squinnondation:
|
class Squinnondation:
|
||||||
|
|
Loading…
Reference in New Issue