Thanks to visit codestin.com Credit goes to github.com
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 279bb1e commit 05a1172Copy full SHA for 05a1172
1 file changed
lib/matplotlib/backends/backend_pdf.py
@@ -1457,8 +1457,8 @@ def writeInfoDict(self):
1457
"""Write out the info dictionary, checking it for good form"""
1458
1459
is_date = lambda x: isinstance(x, datetime)
1460
- check_trapped = lambda x: isinstance(x, Name) and \
1461
- x.name in ('True', 'False', 'Unknown')
+ check_trapped = (lambda x: isinstance(x, Name) and
+ x.name in ('True', 'False', 'Unknown'))
1462
keywords = {'Title': is_string_like,
1463
'Author': is_string_like,
1464
'Subject': is_string_like,
0 commit comments