aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-03-02 12:38:18 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-03-02 12:38:18 -0500
commit6a867624c744c10f65813984639c1f8e28ef1d5d (patch)
treed00af088f812848f6b987f0fb5f7e315d3a3d5f5
parent19e66fcc4dd4c5ddf2cb2f9f5fe5bb7f1ab27fb8 (diff)
parent858ba851b9e826b28a3c57a8c7a64b5d66d635ac (diff)
downloadflowsample-6a867624c744c10f65813984639c1f8e28ef1d5d.tar.gz
Merge branch 'working-on-baz'0.0.1
-rw-r--r--.gitignore1
-rw-r--r--flowsample/baz.py5
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bee8a64
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+__pycache__
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()