Skip to content

Commit 81ff794

Browse files
committed
Modernize syntax
1 parent f9861ec commit 81ff794

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/backends/backend_agg.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
import numpy as np
2929

3030
from matplotlib import verbose, rcParams
31-
from matplotlib.backend_bases import RendererBase,\
32-
FigureManagerBase, FigureCanvasBase
31+
from matplotlib.backend_bases import (RendererBase, FigureManagerBase,
32+
FigureCanvasBase)
3333
from matplotlib.cbook import is_string_like, maxdict, restrict_dict
3434
from matplotlib.figure import Figure
3535
from matplotlib.font_manager import findfont, get_font
36-
from matplotlib.ft2font import LOAD_FORCE_AUTOHINT, LOAD_NO_HINTING, \
37-
LOAD_DEFAULT, LOAD_NO_AUTOHINT
36+
from matplotlib.ft2font import (LOAD_FORCE_AUTOHINT, LOAD_NO_HINTING,
37+
LOAD_DEFAULT, LOAD_NO_AUTOHINT)
3838
from matplotlib.mathtext import MathTextParser
3939
from matplotlib.path import Path
4040
from matplotlib.transforms import Bbox, BboxBase

0 commit comments

Comments
 (0)