summaryrefslogtreecommitdiff
path: root/firehose_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'firehose_config.py')
-rw-r--r--firehose_config.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/firehose_config.py b/firehose_config.py
deleted file mode 100644
index 9e96d06..0000000
--- a/firehose_config.py
+++ /dev/null
@@ -1,14 +0,0 @@
-
-from glob import iglob
-from os.path import join
-
-
-LANDING_DIRS = ("examples", "genivi")
-
-
-def get_landings(firehose_dir):
- for landing_dir in LANDING_DIRS:
- yield [path[len(landing_dir):].lstrip('/') for path in iglob(join(firehose_dir, landing_dir, '*.yaml'))]
-
-
-__all__ = ['get_landings']