Skip to content

Add Transformer.add_functions_signatures_all

Bruno Cardoso requested to merge bc/add-function-signatures into main
  • Adds the function to the Transformer class in order to be used as a transformation
  • Fixes the problem of trailing whitespaces by stripping the signature before returning it. Example:
def foo():
    pass
  • before fix: def foo():\n
  • after fix: def foo():
Edited by Bruno Cardoso

Merge request reports