From 858ba851b9e826b28a3c57a8c7a64b5d66d635ac Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 2 Mar 2016 12:36:30 -0500 Subject: Baz returns foo and bar --- flowsample/baz.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 flowsample/baz.py 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() -- cgit