From 7cca77b7b529b3f348520eaaa34d3b66c8bc45fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Mon, 24 Jun 2013 14:33:58 +0200 Subject: [PATCH] added __init__.py to examples and tests subdirectories --- pysstv/examples/__init__.py | 3 +++ pysstv/tests/__init__.py | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 pysstv/examples/__init__.py create mode 100644 pysstv/tests/__init__.py diff --git a/pysstv/examples/__init__.py b/pysstv/examples/__init__.py new file mode 100644 index 0000000..c733bb1 --- /dev/null +++ b/pysstv/examples/__init__.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python + +__all__ = ['overlay', 'pyaudio_sstv', 'repeater'] diff --git a/pysstv/tests/__init__.py b/pysstv/tests/__init__.py new file mode 100644 index 0000000..c34db48 --- /dev/null +++ b/pysstv/tests/__init__.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python + +__all__ = ['common', 'test_color', 'test_sstv']