Skip to content

Commit 1be1dbe

Browse files
authored
Fix indentation
1 parent 7944a2d commit 1be1dbe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test_add.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def test_addition_basic(a,b):
55
assert addition(2,3)==5
66
assert addition(-1,1)==0
77
assert addition(0,0)==0
8-
if _name_=="_main_":
8+
if __name__=="__main__":
99
print(addition(2,3))
1010

1111

@@ -17,3 +17,4 @@ def test_addition_basic(a,b):
1717

1818

1919

20+

0 commit comments

Comments
 (0)