Dumper: replace import * with explicit imports

Using imports like

 from foo import *

is considered as bad habit and it reduces
static code analysis usability.

Change-Id: I56a175f4c7b231e2b8e486bd9d1c65543720f56a
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2020-02-24 10:14:27 +01:00
parent c063c6d407
commit 44db8e2eab
11 changed files with 19 additions and 20 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ import struct
import tempfile
import types
from dumper import *
from dumper import DumperBase, Children, toInteger, TopLevelItem
from utils import TypeCode
#######################################################################