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): ...@@ -37,4 +37,3 @@ class ArchiveCommandTest(CommandTest):
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
...@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest): ...@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest):
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
...@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest): ...@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest):
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
...@@ -25,4 +25,3 @@ class TopydoTest(unittest.TestCase): ...@@ -25,4 +25,3 @@ class TopydoTest(unittest.TestCase):
Make sure that every test case leaves a clean configuration. Make sure that every test case leaves a clean configuration.
""" """
config("") config("")
...@@ -39,4 +39,3 @@ class ViewTest(TopydoTest): ...@@ -39,4 +39,3 @@ class ViewTest(TopydoTest):
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
...@@ -110,4 +110,3 @@ def get_subcommand(p_args): ...@@ -110,4 +110,3 @@ def get_subcommand(p_args):
result = import_subcommand(p_command) result = import_subcommand(p_command)
return (result, args) return (result, args)
...@@ -226,4 +226,3 @@ class CLIApplicationBase(object): ...@@ -226,4 +226,3 @@ class CLIApplicationBase(object):
def run(self): def run(self):
raise NotImplementedError raise NotImplementedError
...@@ -121,4 +121,3 @@ def main(): ...@@ -121,4 +121,3 @@ def main():
if __name__ == '__main__': if __name__ == '__main__':
main() main()
...@@ -33,4 +33,3 @@ class ExitCommand(Command): ...@@ -33,4 +33,3 @@ class ExitCommand(Command):
return False return False
sys.exit(0) sys.exit(0)
...@@ -92,4 +92,3 @@ class Command(object): ...@@ -92,4 +92,3 @@ class Command(object):
def help(self): def help(self):
""" Returns the help text for this command. """ """ Returns the help text for this command. """
raise NotImplementedError raise NotImplementedError
...@@ -81,4 +81,3 @@ def hash_list_values(p_list, p_key=lambda i: i): ...@@ -81,4 +81,3 @@ def hash_list_values(p_list, p_key=lambda i: i):
result.append((item, _to_base36(hash_value))) result.append((item, _to_base36(hash_value)))
return result return result
...@@ -95,4 +95,3 @@ class Todo(TodoBase): ...@@ -95,4 +95,3 @@ class Todo(TodoBase):
return diff.days return diff.days
else: else:
return 0 return 0
...@@ -226,4 +226,3 @@ class TodoBase(object): ...@@ -226,4 +226,3 @@ class TodoBase(object):
def creation_date(self): def creation_date(self):
""" Returns the creation date of a todo. """ """ Returns the creation date of a todo. """
return self.fields['creationDate'] return self.fields['creationDate']
...@@ -103,4 +103,3 @@ def parse_line(p_string): ...@@ -103,4 +103,3 @@ def parse_line(p_string):
result['text'] = result['text'][:-1] result['text'] = result['text'][:-1]
return result 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