Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4d4b653

Browse files
committed
Changed to single line with comment.
1 parent 59380fa commit 4d4b653

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/matplotlib/backends/backend_qt5.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,7 @@ def _update_figure_dpi(self):
269269
def _dpi_ratio(self):
270270
# Not available on Qt4 or some older Qt5.
271271
try:
272-
ratio = self.devicePixelRatio()
273-
if ratio == 0:
274-
return 1
275-
else:
276-
return ratio
272+
return self.devicePixelRatio() or 1 # can be 0 in rare cases
277273
except AttributeError:
278274
return 1
279275

0 commit comments

Comments
 (0)