Skip to content

Commit 1fa63a8

Browse files
author
Eric Kolve
committed
changing
1 parent 01d0910 commit 1fa63a8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

mypackage.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11

22
def mything(add):
33
add + 10
4+
5+
def myotherthing(foo):
6+
return foo - 10

test/test_ocr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import mypackage
22

33
def test_thing():
4-
pass
4+
mypackage.myotherthing(5)

0 commit comments

Comments
 (0)