azmlclient/base_databinding.py
1
F401:
'typing.Tuple' imported but unused
16
from
typing
import
Dict
,
Union
,
List
,
Any
,
Tuple
1
E306:
expected 1 blank line before a nested definition, found 0
264
def
to_js_prim
(
obj
):
1
W293:
blank line contains whitespace
452
1
S110:
Try, Except, Pass detected.
535
except
Exception
:
1
S307:
Use of possibly insecure function - consider using safer ast.literal_eval.
469
PRIM_TYPES
=
(
int
,
str
,
bool
,
eval
(
'long'
))