forked from Crockan/MercuryToolbox
chore(release): prepare public source release
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class Worker:
|
||||
def build(self, value: int) -> int:
|
||||
return value + 1
|
||||
|
||||
|
||||
def helper(value: int) -> int:
|
||||
return value * 2
|
||||
|
||||
|
||||
def build_twice(value: int) -> int:
|
||||
worker = Worker()
|
||||
return helper(worker.build(value))
|
||||
Reference in New Issue
Block a user