I'm using Sublime + Anaconda which has a built-in PyLint feature.
I can't figure out why the pars_f_name)
line in the following block:
else:
# Get parameters file name from path.
pars_f_name = pars_f_path.split('/')[-1]
print (" WARNING: Unknown '{}' ID found in line {}\n"
" of '{}' file.\n").format(reader[0], l + 1,
pars_f_name)
# Pack params in lists.
pl_params = [flag_make_plot, plot_frmt, plot_dpi]
is being flagged as:
[W] PEP 8 (E128): continuation line under-indented for visual indent
I've tried every indentation I could think of (as suggested here) but Anaconda keeps flagging that line as a PEP8 E128 warning.
What am I doing wrong here?