Skip to content

Instantly share code, notes, and snippets.

@amir-abdi
Last active December 12, 2022 09:20
Show Gist options
  • Save amir-abdi/2c9c7795c3a17160848b7ef237d22edf to your computer and use it in GitHub Desktop.
Save amir-abdi/2c9c7795c3a17160848b7ef237d22edf to your computer and use it in GitHub Desktop.
# foo/bar.py
def func3(sky, ocean, sea):
breakpoint()
print('func1', sky, ocean, sea)
def func2(sky, ocean):
"""
This is a long docstring to enable scrolling.
end of docstring
"""
func3(sky, ocean, 3)
def func1(sky):
func2(sky, 2)
func1(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment