Skip to content

Commit 5e64f4e

Browse files
zertoshfacebook-github-bot
authored andcommitted
Remove unnecessary flake8 B950 suppressions
Reviewed By: mzlee Differential Revision: D22091444 fbshipit-source-id: 3b1e3d8a1f3b60d22f2ba0bcfe8b43ba789dfb77
1 parent deb751e commit 5e64f4e

15 files changed

+62
-62
lines changed

commands/FBAccessibilityCommands.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ def accessibilityGrepHierarchy(self, view, needle):
9595
# We call private method that gives back all visible accessibility children
9696
# for view iOS 10 and higher
9797
if fb.evaluateBooleanExpression(
98-
"[UIView respondsToSelector:@selector(_accessibilityElementsAndContainersDescendingFromViews:options:sorted:)]" # noqa B950
98+
"[UIView respondsToSelector:@selector(_accessibilityElementsAndContainersDescendingFromViews:options:sorted:)]"
9999
):
100100
accessibilityElements = fb.evaluateObjectExpression(
101-
"[UIView _accessibilityElementsAndContainersDescendingFromViews:@[(id)%s] options:0 sorted:NO]" # noqa B950
101+
"[UIView _accessibilityElementsAndContainersDescendingFromViews:@[(id)%s] options:0 sorted:NO]"
102102
% view
103103
)
104104
else:
105105
accessibilityElements = fb.evaluateObjectExpression(
106-
"[[[UIApplication sharedApplication] keyWindow] _accessibilityElementsInContainer:0 topLevel:%s includeKB:0]" # noqa B950
106+
"[[[UIApplication sharedApplication] keyWindow] _accessibilityElementsInContainer:0 topLevel:%s includeKB:0]"
107107
% view
108108
)
109109
accessibilityElementsCount = fb.evaluateIntegerExpression(
@@ -156,7 +156,7 @@ def isRunningInSimulator():
156156
def forceStartAccessibilityServer():
157157
# We try to start accessibility server only if we don't have needed method active
158158
if not fb.evaluateBooleanExpression(
159-
"[UIView instancesRespondToSelector:@selector(_accessibilityElementsInContainer:)]" # noqa B950
159+
"[UIView instancesRespondToSelector:@selector(_accessibilityElementsInContainer:)]"
160160
):
161161
# Starting accessibility server is different for simulator and device
162162
if isRunningInSimulator():
@@ -165,7 +165,7 @@ def forceStartAccessibilityServer():
165165
)
166166
else:
167167
fb.evaluateEffect(
168-
"[[[UIApplication sharedApplication] _accessibilityBundlePrincipalClass] _accessibilityStartServer]" # noqa B950
168+
"[[[UIApplication sharedApplication] _accessibilityBundlePrincipalClass] _accessibilityStartServer]"
169169
)
170170

171171

@@ -198,7 +198,7 @@ def accessibilityElements(view):
198198
return fb.evaluateExpression("(id)[%s _accessibleSubviews]" % (view), False)
199199
else:
200200
return fb.evaluateObjectExpression(
201-
"[[[UIApplication sharedApplication] keyWindow] _accessibilityElementsInContainer:0 topLevel:%s includeKB:0]" # noqa B950
201+
"[[[UIApplication sharedApplication] keyWindow] _accessibilityElementsInContainer:0 topLevel:%s includeKB:0]"
202202
% view
203203
)
204204

commands/FBAutoLayoutCommands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def args(self):
4242
def run(self, arguments, options):
4343
view = fb.evaluateInputExpression(arguments[0])
4444
opt = fb.evaluateBooleanExpression(
45-
"[UIView instancesRespondToSelector:@selector(_autolayoutTraceRecursively:)]" # noqa B950
45+
"[UIView instancesRespondToSelector:@selector(_autolayoutTraceRecursively:)]"
4646
)
4747
traceCall = "_autolayoutTraceRecursively:1" if opt else "_autolayoutTrace"
4848
print(fb.describeObject("[{} {}]".format(view, traceCall)))

commands/FBComponentCommands.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ def options(self):
7070
arg="upwards",
7171
boolean=True,
7272
default=False,
73-
help="Print only the component hierarchy found on the first superview that has them, carrying the search up to its window.", # noqa B950
73+
help="Print only the component hierarchy found on the first superview that has them, carrying the search up to its window.",
7474
),
7575
fb.FBCommandArgument(
7676
short="-v",
7777
long="--show-views",
7878
arg="showViews",
7979
type="BOOL",
8080
default="YES",
81-
help="Prints the component hierarchy and does not print the views if the supplied argument is 'NO'. Supply either a 'YES' or a 'NO'. The default is to show views.", # noqa B950
81+
help="Prints the component hierarchy and does not print the views if the supplied argument is 'NO'. Supply either a 'YES' or a 'NO'. The default is to show views.",
8282
),
8383
]
8484

@@ -87,7 +87,7 @@ def args(self):
8787
fb.FBCommandArgument(
8888
arg="aView",
8989
type="UIView* or CKComponent*",
90-
help="The view or component from which the search for components begins.", # noqa B950
90+
help="The view or component from which the search for components begins.",
9191
default="(id)[[UIApplication sharedApplication] keyWindow]",
9292
)
9393
]
@@ -103,7 +103,7 @@ def run(self, arguments, options):
103103

104104
print(
105105
fb.describeObject(
106-
"[CKComponentHierarchyDebugHelper componentHierarchyDescriptionForView:(UIView *)" # noqa B950
106+
"[CKComponentHierarchyDebugHelper componentHierarchyDescriptionForView:(UIView *)"
107107
+ view
108108
+ " searchUpwards:"
109109
+ upwards

commands/FBDebugCommands.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def run(self, arguments, options):
5353

5454
objectAddress = int(fb.evaluateObjectExpression(commandForObject), 0)
5555

56-
ivarOffsetCommand = '(ptrdiff_t)ivar_getOffset((void*)object_getInstanceVariable((id){}, "{}", 0))'.format( # noqa B950
56+
ivarOffsetCommand = '(ptrdiff_t)ivar_getOffset((void*)object_getInstanceVariable((id){}, "{}", 0))'.format(
5757
objectAddress, ivarName
5858
)
5959
ivarOffset = int(fb.evaluateExpression(ivarOffsetCommand), 0)
@@ -62,7 +62,7 @@ def run(self, arguments, options):
6262
# not permanent in the session like $variables.
6363
ivarSizeCommand = (
6464
"unsigned int size = 0;"
65-
'char *typeEncoding = (char *)ivar_getTypeEncoding((void*)class_getInstanceVariable((Class)object_getClass((id){}), "{}"));' # noqa B950
65+
'char *typeEncoding = (char *)ivar_getTypeEncoding((void*)class_getInstanceVariable((Class)object_getClass((id){}), "{}"));'
6666
"(char *)NSGetSizeAndAlignment(typeEncoding, &size, 0);"
6767
"size"
6868
).format(objectAddress, ivarName)
@@ -88,14 +88,14 @@ def name(self):
8888
return "binside"
8989

9090
def description(self):
91-
return "Set a breakpoint for a relative address within the framework/library that's currently running. This does the work of finding the offset for the framework/library and sliding your address accordingly." # noqa B950
91+
return "Set a breakpoint for a relative address within the framework/library that's currently running. This does the work of finding the offset for the framework/library and sliding your address accordingly."
9292

9393
def args(self):
9494
return [
9595
fb.FBCommandArgument(
9696
arg="address",
9797
type="string",
98-
help="Address within the currently running framework to set a breakpoint on.", # noqa B950
98+
help="Address within the currently running framework to set a breakpoint on.",
9999
)
100100
]
101101

@@ -118,14 +118,14 @@ def name(self):
118118
return "bmessage"
119119

120120
def description(self):
121-
return "Set a breakpoint for a selector on a class, even if the class itself doesn't override that selector. It walks the hierarchy until it finds a class that does implement the selector and sets a conditional breakpoint there." # noqa B950
121+
return "Set a breakpoint for a selector on a class, even if the class itself doesn't override that selector. It walks the hierarchy until it finds a class that does implement the selector and sets a conditional breakpoint there."
122122

123123
def args(self):
124124
return [
125125
fb.FBCommandArgument(
126126
arg="expression",
127127
type="string",
128-
help='Expression to set a breakpoint on, e.g. "-[MyView setFrame:]", "+[MyView awesomeClassMethod]" or "-[0xabcd1234 setFrame:]"', # noqa B950
128+
help='Expression to set a breakpoint on, e.g. "-[MyView setFrame:]", "+[MyView awesomeClassMethod]" or "-[0xabcd1234 setFrame:]"',
129129
)
130130
]
131131

@@ -155,7 +155,7 @@ def run(self, arguments, options):
155155
if not expressionForSelf:
156156
arch = objc.currentArch()
157157
print(
158-
"Your architecture, {}, is truly fantastic. However, I don't currently support it.".format( # noqa B950
158+
"Your architecture, {}, is truly fantastic. However, I don't currently support it.".format(
159159
arch
160160
)
161161
)
@@ -213,7 +213,7 @@ def run(self, arguments, options):
213213

214214
if not found:
215215
print(
216-
"There doesn't seem to be an implementation of {} in the class hierarchy. Made a boo boo with the selector name?".format( # noqa B950
216+
"There doesn't seem to be an implementation of {} in the class hierarchy. Made a boo boo with the selector name?".format(
217217
selector
218218
)
219219
)
@@ -242,7 +242,7 @@ def run(self, arguments, options):
242242

243243
if category:
244244
lldb.debugger.HandleCommand(
245-
'breakpoint set --skip-prologue false --fullname "{}" --condition "{}"'.format( # noqa B950
245+
'breakpoint set --skip-prologue false --fullname "{}" --condition "{}"'.format(
246246
breakpointFullName, breakpointCondition
247247
)
248248
)
@@ -251,7 +251,7 @@ def run(self, arguments, options):
251251
methodTypeCharacter, breakpointClassName, selector
252252
)
253253
lldb.debugger.HandleCommand(
254-
'breakpoint set --skip-prologue false --func-regex "{}" --condition "{}"'.format( # noqa B950
254+
'breakpoint set --skip-prologue false --func-regex "{}" --condition "{}"'.format(
255255
breakpointPattern, breakpointCondition
256256
)
257257
)
@@ -279,7 +279,7 @@ def description(self):
279279

280280
def run(self, arguments, options):
281281
fb.evaluateEffect(
282-
"[[UIApplication sharedApplication] performSelector:@selector(_performMemoryWarning)]" # noqa B950
282+
"[[UIApplication sharedApplication] performSelector:@selector(_performMemoryWarning)]"
283283
)
284284

285285

@@ -432,7 +432,7 @@ def run(self, arguments, options):
432432

433433
if len(arguments) == 0 or not arguments[0].strip():
434434
print(
435-
"Usage: findinstances <classOrProtocol> [<predicate>]; Run `help findinstances`" # noqa B950
435+
"Usage: findinstances <classOrProtocol> [<predicate>]; Run `help findinstances`"
436436
)
437437
return
438438

commands/FBDisplayCommands.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def name(self):
4747
return "border"
4848

4949
def description(self):
50-
return "Draws a border around <viewOrLayer>. Color and width can be optionally provided. Additionally depth can be provided in order to recursively border subviews." # noqa B950
50+
return "Draws a border around <viewOrLayer>. Color and width can be optionally provided. Additionally depth can be provided in order to recursively border subviews."
5151

5252
def args(self):
5353
return [
@@ -82,7 +82,7 @@ def options(self):
8282
arg="depth",
8383
type="int",
8484
default=0,
85-
help="Number of levels of subviews to border. Each level gets a different color beginning with the provided or default color", # noqa B950
85+
help="Number of levels of subviews to border. Each level gets a different color beginning with the provided or default color",
8686
),
8787
]
8888

@@ -186,7 +186,7 @@ def name(self):
186186
return "mask"
187187

188188
def description(self):
189-
return "Add a transparent rectangle to the window to reveal a possibly obscured or hidden view or layer's bounds" # noqa B950
189+
return "Add a transparent rectangle to the window to reveal a possibly obscured or hidden view or layer's bounds"
190190

191191
def args(self):
192192
return [
@@ -248,7 +248,7 @@ def name(self):
248248
return "caflush"
249249

250250
def description(self):
251-
return "Force Core Animation to flush. This will 'repaint' the UI but also may mess with ongoing animations." # noqa B950
251+
return "Force Core Animation to flush. This will 'repaint' the UI but also may mess with ongoing animations."
252252

253253
def run(self, arguments, options):
254254
viewHelpers.flushCoreAnimationTransaction()

commands/FBFindCommands.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def name(self):
2323
return "fvc"
2424

2525
def description(self):
26-
return "Find the view controllers whose class names match classNameRegex and puts the address of first on the clipboard." # noqa B950
26+
return "Find the view controllers whose class names match classNameRegex and puts the address of first on the clipboard."
2727

2828
def options(self):
2929
return [
@@ -32,14 +32,14 @@ def options(self):
3232
long="--name",
3333
arg="classNameRegex",
3434
type="string",
35-
help="The view-controller-class regex to search the view controller hierarchy for.", # noqa B950
35+
help="The view-controller-class regex to search the view controller hierarchy for.",
3636
),
3737
fb.FBCommandArgument(
3838
short="-v",
3939
long="--view",
4040
arg="view",
4141
type="UIView",
42-
help="This function will print the View Controller that owns this view.", # noqa B950
42+
help="This function will print the View Controller that owns this view.",
4343
),
4444
]
4545

@@ -93,7 +93,7 @@ def name(self):
9393
return "fv"
9494

9595
def description(self):
96-
return "Find the views whose class names match classNameRegex and puts the address of first on the clipboard." # noqa B950
96+
return "Find the views whose class names match classNameRegex and puts the address of first on the clipboard."
9797

9898
def args(self):
9999
return [

commands/FBFlickerCommands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def args(self):
5656

5757
def run(self, arguments, options):
5858
print(
59-
"\nUse the following and (q) to quit.\n(w) move to superview\n(s) move to first subview\n(a) move to previous sibling\n(d) move to next sibling\n(p) print the hierarchy\n" # noqa B950
59+
"\nUse the following and (q) to quit.\n(w) move to superview\n(s) move to first subview\n(a) move to previous sibling\n(d) move to next sibling\n(p) print the hierarchy\n"
6060
)
6161

6262
object = fb.evaluateInputExpression(arguments[0])

commands/FBInvocationCommands.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def name(self):
2020
return "pinvocation"
2121

2222
def description(self):
23-
return "Print the stack frame, receiver, and arguments of the current invocation. It will fail to print all arguments if any arguments are variadic (varargs).\n\nNOTE: Sadly this is currently only implemented on x86." # noqa B950
23+
return "Print the stack frame, receiver, and arguments of the current invocation. It will fail to print all arguments if any arguments are variadic (varargs).\n\nNOTE: Sadly this is currently only implemented on x86."
2424

2525
def options(self):
2626
return [
@@ -30,7 +30,7 @@ def options(self):
3030
arg="all",
3131
default=False,
3232
boolean=True,
33-
help="Specify to print the entire stack instead of just the current frame.", # noqa B950
33+
help="Specify to print the entire stack instead of just the current frame.",
3434
)
3535
]
3636

@@ -76,7 +76,7 @@ def printInvocationForFrame(frame):
7676
and str(signatureValue.GetError()) != "success"
7777
):
7878
print(
79-
"My sincerest apologies. I couldn't find a method signature for the selector." # noqa B950
79+
"My sincerest apologies. I couldn't find a method signature for the selector."
8080
)
8181
return
8282

0 commit comments

Comments
 (0)