From: Frank Brehm Date: Tue, 14 Mar 2017 11:27:36 +0000 (+0100) Subject: Adding pp_lib/format_du.py X-Git-Tag: 0.1.2~269 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=dd6141e332d8779861696060deb8951e8a7b9ec2;p=pixelpark%2Fadmin-tools.git Adding pp_lib/format_du.py --- diff --git a/pp_lib/format_du.py b/pp_lib/format_du.py new file mode 100644 index 0000000..7a883e7 --- /dev/null +++ b/pp_lib/format_du.py @@ -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