It looks like the max_line_length option for flake8 is being ignored in my setting. Can you see what I'm doing wrong?

Note that if I include --ignore E231 the warning message is suppressed, so that option seems to be working.
Here's the raw code for my example:
%load_ext pycodestyle_magic
%flake8_on --max_line_length 60
import numpy as np
import pandas as pd
import string
pd.DataFrame(np.random.randn(100,26), columns=list(string.ascii_uppercase))
len("pd.DataFrame(np.random.randn(100,26), columns=list(string.ascii_uppercase))")
It looks like the
max_line_lengthoption forflake8is being ignored in my setting. Can you see what I'm doing wrong?Note that if I include
--ignore E231the warning message is suppressed, so that option seems to be working.Here's the raw code for my example: