Consider the following import statement:
from modeling.estimation.performance_analysis.monte_carlo.least_squares.error_grids import BaseGrid
black (with an 80 character/line limit) formats this as:
from modeling.estimation.performance_analysis.monte_carlo.least_squares.error_grids import (
BaseGrid,
)
which goes beyond 80 characters. Any attempt to break up the import statement using \
's is undone by black.
How can I get black to respect the 80 character limit?