From f2d4ac87c2a6c1903e181f4bc76ce6e7b13620c1 Mon Sep 17 00:00:00 2001 From: Peter DeLong Date: Thu, 24 Aug 2017 10:16:37 -0700 Subject: [PATCH] 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 --- folly/fibers/scripts/gdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 2.34.1