Skip to content

Commit 8d8aa2e

Browse files
committed
Fix a wildcard import
1 parent bef68d1 commit 8d8aa2e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scapy/config.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
from __future__ import print_function
1212
import os,time,socket,sys
1313

14-
from scapy import VERSION
15-
from scapy.data import *
16-
from scapy import base_classes
17-
from scapy.themes import NoTheme, apply_ipython_style
14+
from scapy import VERSION, base_classes
15+
from scapy.data import ETHER_TYPES, IP_PROTOS, TCP_SERVICES, UDP_SERVICES, \
16+
MANUFDB
1817
from scapy.error import log_scapy
19-
import scapy.modules.six as six
18+
from scapy.modules import six
19+
from scapy.themes import NoTheme, apply_ipython_style
2020

2121
############
2222
## Config ##

0 commit comments

Comments
 (0)