We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365801d commit 73cb918Copy full SHA for 73cb918
lib/matplotlib/backends/backend_pdf.py
@@ -692,7 +692,6 @@ def __init__(self, filename, metadata=None):
692
# differently encoded Type-1 fonts may share the same descriptor
693
self.type1Descriptors = {}
694
self._character_tracker = _backend_pdf_ps.CharacterTracker()
695
- # self._char_to_font = None
696
697
self.alphaStates = {} # maps alpha values to graphics state objects
698
self._alpha_state_seq = (Name(f'A{i}') for i in itertools.count(1))
@@ -1929,8 +1928,6 @@ class RendererPdf(_backend_pdf_ps.RendererPDFPSBase):
1929
1928
def __init__(self, file, image_dpi, height, width):
1930
super().__init__(width, height)
1931
self.file = file
1932
- self.char_to_font = {}
1933
- self.glyph_to_font = {}
1934
self.gc = self.new_gc()
1935
self.image_dpi = image_dpi
1936
0 commit comments