Skip to content

Instantly share code, notes, and snippets.

@gaizeror
gaizeror / example.py
Last active July 8, 2018 05:14
inner function test
b.py:
def get_yaml_data(account_id):
return get_data('bla/%s.yaml' % account_id).data
a.py:
from path.to.b.py import get_yaml_data
class Example(object):