X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Futils%2Futils.py;h=e3927fcd7cbff823dbda081cb2b5f561b56f25e2;hb=39becab4a5cf591b1833e875c06793d97ac78659;hp=017af9fd4b96ded621c9a31bfec0c8affac98ac3;hpb=204fdd2bea753b024c7253a5830325b81aebbd61;p=mpd-sima.git diff --git a/sima/utils/utils.py b/sima/utils/utils.py index 017af9f..e3927fc 100644 --- a/sima/utils/utils.py +++ b/sima/utils/utils.py @@ -24,9 +24,9 @@ import traceback import sys -from argparse import (ArgumentError, Action) -from os import (environ, access, getcwd, W_OK, R_OK) -from os.path import (dirname, isabs, join, normpath, exists, isdir, isfile) +from argparse import ArgumentError, Action +from os import environ, access, getcwd, W_OK, R_OK +from os.path import dirname, isabs, join, normpath, exists, isdir, isfile def get_mpd_environ(): """ @@ -63,7 +63,6 @@ def exception_log(): log.info('Quiting now!') sys.exit(1) - # ArgParse Callbacks class Obsolete(Action): # pylint: disable=R0903 @@ -73,7 +72,7 @@ class Obsolete(Action): raise ArgumentError(self, 'obsolete argument') class FileAction(Action): - """Generic class to inherit from for ARgPArse action on file/dir + """Generic class to inherit from for ArgParse action on file/dir """ # pylint: disable=R0903 def __call__(self, parser, namespace, values, option_string=None):