apheleia/test/formatters/samplecode/yapf/out.py
Semen f85b48e2ee
Add yapf formatter (#196)
<!--

To expedite the pull request process, please see the contributor guide
for my projects:

  <https://github.com/raxod502/contributor-guide>

-->
2023-05-27 10:55:56 -07:00

18 lines
199 B
Python

import sys
import os
import path
def the_solution(a, b: int, c: bool = True) -> bool:
print(a + b)
return True
if __name__ == "__main__":
the_solution(
1,
2,
)