tcllib   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
4
"""Library for TCL API work and related functions."""
5
6
from .ansi import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like ansi should generally be avoided.
Loading history...
7
from .argparser import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like argparser should generally be avoided.
Loading history...
8
from .devices import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like devices should generally be avoided.
Loading history...
9
from .devlist import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like devlist should generally be avoided.
Loading history...
10
from .dumpmgr import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like dumpmgr should generally be avoided.
Loading history...
11