]> Frank Brehm's Git Trees - pixelpark/admin-tools.git/commitdiff
Adding pp_lib/format_du.py
authorFrank Brehm <frank.brehm@pixelpark.com>
Tue, 14 Mar 2017 11:27:36 +0000 (12:27 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Tue, 14 Mar 2017 11:27:36 +0000 (12:27 +0100)
pp_lib/format_du.py [new file with mode: 0644]

diff --git a/pp_lib/format_du.py b/pp_lib/format_du.py
new file mode 100644 (file)
index 0000000..7a883e7
--- /dev/null
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+"""
+@author: Frank Brehm
+@contact: frank.brehm@pixelpark.com
+@copyright: © 2017 by Frank Brehm, Berlin
+@summary: The module for the application object.
+"""
+from __future__ import absolute_import
+
+# Standard modules
+import logging
+
+import six
+
+# Own modules
+from .errors import FunctionNotImplementedError, PpAppError
+
+from .app import PpApplication
+
+__version__ = '0.1.0'
+LOG = logging.getLogger(__name__)
+
+
+
+# =============================================================================
+
+if __name__ == "__main__":
+
+    pass
+
+# =============================================================================
+
+# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 list