Improve formatting of scripts and test files
authorPeter DeLong <pdelong@fb.com>
Thu, 24 Aug 2017 17:16:37 +0000 (10:16 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Thu, 24 Aug 2017 17:28:31 +0000 (10:28 -0700)
Summary: Reformatted the scripts and test files to look better and also to avoid lint warnings in the future

Reviewed By: andriigrynenko

Differential Revision: D5673856

fbshipit-source-id: 5818625ec14d18ef3b9b804df53949afefc3b98f

folly/fibers/scripts/gdb.py

index 1e3f0e86a026d16d80bbd4ca18f089ffe92c0852..f13e6fb5194e426671ce119655aff2460724f0e1 100644 (file)
@@ -77,7 +77,8 @@ class GetFiberXMethodWorker(gdb.xmethod.XMethodWorker):
 
 class GetFiberXMethodMatcher(gdb.xmethod.XMethodMatcher):
     def __init__(self):
-        super(GetFiberXMethodMatcher, self).__init__("Fiber address method matcher")
+        super(GetFiberXMethodMatcher, self).__init__(
+            "Fiber address method matcher")
         self.worker = GetFiberXMethodWorker()
 
     def match(self, class_type, method_name):