aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/yapf/in.py
blob: 4a561a25885d3f3c6d0cba9cbac51fdc1134e166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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, )