aboutsummaryrefslogtreecommitdiff
path: root/flowsample/baz.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-03-02 12:36:30 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-03-02 12:36:30 -0500
commit858ba851b9e826b28a3c57a8c7a64b5d66d635ac (patch)
treed00af088f812848f6b987f0fb5f7e315d3a3d5f5 /flowsample/baz.py
parent97fd3e1460e50e4aac29455aa91465fd7e6bda23 (diff)
downloadflowsample-858ba851b9e826b28a3c57a8c7a64b5d66d635ac.tar.gz
Baz returns foo and bar
Diffstat (limited to 'flowsample/baz.py')
-rw-r--r--flowsample/baz.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/flowsample/baz.py b/flowsample/baz.py
new file mode 100644
index 0000000..55b4661
--- /dev/null
+++ b/flowsample/baz.py
@@ -0,0 +1,5 @@
+from . import foo
+from . import bar
+
+def baz():
+ return foo.foo(), bar.bar()