Files
2022-01-14 20:36:54 +02:00

11 lines
245 B
Python

# Copyright 2019 Ram Rachum and collaborators.
# This program is distributed under the MIT license.
import pysnooper
from .bar import bar_function
@pysnooper.snoop(depth=2, color=False)
def foo_function():
z = bar_function(3)
return z