forked from VimPlug/jedi
Remove a print statement
This commit is contained in:
@@ -159,7 +159,6 @@ def get_call_signature(funcdef, width=72, call_string=None,
|
||||
params = funcdef.get_params()
|
||||
if omit_first_param:
|
||||
params = params[1:]
|
||||
print(params, omit_first_param)
|
||||
p = '(' + ''.join(param.get_code() for param in params).strip() + ')'
|
||||
# TODO this is pretty bad, we should probably just normalize.
|
||||
p = re.sub(r'\s+', ' ', p)
|
||||
|
||||
@@ -165,7 +165,6 @@ def test_no_error(environment):
|
||||
a = 20
|
||||
""")
|
||||
func_name, = names(code)
|
||||
print(func_name.defined_names())
|
||||
a, b, a20 = func_name.defined_names()
|
||||
assert a.name == 'a'
|
||||
assert b.name == 'b'
|
||||
|
||||
Reference in New Issue
Block a user