Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1150)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py

Issue 1839193004: Run auto-formatter (autopep8) on webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py
index c9d1e218364faa447d2df04c3e8641989278ea64..01c8fe50a12c0c38b34d2385f3d7b3ba52a9c787 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo.py
@@ -75,7 +75,8 @@ class PlatformInfo(object):
def is_highdpi(self):
if self.is_mac():
- output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self._executive.ignore_error)
+ output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'],
+ error_handler=self._executive.ignore_error)
if output and 'Retina: Yes' in output:
return True
return False

Powered by Google App Engine
This is Rietveld 408576698