mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-14 08:47:59 -05:00
11 lines
245 B
Python
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 |