Skip to content

Commit

Permalink
apply upgraded black 21.4b2 formatting to fbsource
Browse files Browse the repository at this point in the history
Summary:
This applies the formatting changes from black v21.4b2 to all covered
projects in fbsource. Most changes are to single line docstrings, as black
will now remove leading and trailing whitespace to match PEP8. Any other
formatting changes are likely due to files that landed without formatting,
or files that previously triggered errors in black.

Any changes to code should be AST identical. Any test failures are likely
due to bad tests, or testing against the output of pyfmt.

Reviewed By: thatch

Differential Revision: D28204910

fbshipit-source-id: 804725bcd14f763e90c5ddff1d0418117c15809a
  • Loading branch information
amyreese authored and facebook-github-bot committed May 5, 2021
1 parent 119ec3e commit d089a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/Stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _evaluate_expression(frame, expression):


def _get_raw_ptr_from_shared_ptr(shared_ptr):
""" Decode raw pointer from shared_ptr"""
"""Decode raw pointer from shared_ptr"""
return shared_ptr.GetChildAtIndex(0)


Expand Down

0 comments on commit d089a64

Please sign in to comment.