Commit 059f5119 authored by MinchinWeb's avatar MinchinWeb

Fix PEP8 W391

blank line at end of file
parent 54053faa
......@@ -37,4 +37,3 @@ class ArchiveCommandTest(CommandTest):
if __name__ == '__main__':
unittest.main()
......@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest):
if __name__ == '__main__':
unittest.main()
......@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest):
if __name__ == '__main__':
unittest.main()
......@@ -25,4 +25,3 @@ class TopydoTest(unittest.TestCase):
Make sure that every test case leaves a clean configuration.
"""
config("")
......@@ -39,4 +39,3 @@ class ViewTest(TopydoTest):
if __name__ == '__main__':
unittest.main()
......@@ -110,4 +110,3 @@ def get_subcommand(p_args):
result = import_subcommand(p_command)
return (result, args)
......@@ -226,4 +226,3 @@ class CLIApplicationBase(object):
def run(self):
raise NotImplementedError
......@@ -121,4 +121,3 @@ def main():
if __name__ == '__main__':
main()
......@@ -33,4 +33,3 @@ class ExitCommand(Command):
return False
sys.exit(0)
......@@ -92,4 +92,3 @@ class Command(object):
def help(self):
""" Returns the help text for this command. """
raise NotImplementedError
......@@ -81,4 +81,3 @@ def hash_list_values(p_list, p_key=lambda i: i):
result.append((item, _to_base36(hash_value)))
return result
......@@ -95,4 +95,3 @@ class Todo(TodoBase):
return diff.days
else:
return 0
......@@ -226,4 +226,3 @@ class TodoBase(object):
def creation_date(self):
""" Returns the creation date of a todo. """
return self.fields['creationDate']
......@@ -103,4 +103,3 @@ def parse_line(p_string):
result['text'] = result['text'][:-1]
return result
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment