From: Peter DeLong Date: Thu, 24 Aug 2017 17:16:37 +0000 (-0700) Subject: Improve formatting of scripts and test files X-Git-Tag: v2017.08.28.00~9 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f2d4ac87c2a6c1903e181f4bc76ce6e7b13620c1;p=folly.git Improve formatting of scripts and test files 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 --- diff --git a/folly/fibers/scripts/gdb.py b/folly/fibers/scripts/gdb.py index 1e3f0e86..f13e6fb5 100644 --- a/folly/fibers/scripts/gdb.py +++ b/folly/fibers/scripts/gdb.py @@ -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):