1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-28 11:42:03 +03:00

python/tests/kcc_*: avoid * imports

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Noel Power <npower@samba.org>
This commit is contained in:
Douglas Bagnall
2018-10-11 14:51:55 +13:00
committed by Noel Power
parent b90b2fcda8
commit bbf1740b33
2 changed files with 9 additions and 2 deletions

View File

@ -21,7 +21,13 @@
import samba
import samba.tests
from samba.kcc.graph_utils import *
from samba.kcc.graph_utils import GraphError
from samba.kcc.graph_utils import (verify_graph_complete,
verify_graph_connected,
verify_graph_connected_under_edge_failures,
verify_graph_forest,
verify_graph_connected_under_vertex_failures,
verify_graph_no_lonely_vertices)
import itertools