Commit b2eb9e48 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Rename class.

parent 79de0979
......@@ -33,7 +33,7 @@ def arguments():
return values
class Application(object): # TODO: rename to CLIApplication
class CLIApplication(object):
def __init__(self):
self.todolist = TodoList.TodoList([])
......@@ -80,4 +80,4 @@ class Application(object): # TODO: rename to CLIApplication
todofile.write(str(self.todolist))
if __name__ == '__main__':
Application().run()
CLIApplication().run()
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