Commit e17b5193 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Fix minor typos.

parent 971d16f9
...@@ -38,7 +38,7 @@ class CLIApplication(CLIApplicationBase): ...@@ -38,7 +38,7 @@ class CLIApplication(CLIApplicationBase):
""" """
Class that represents the Command Line Interface of Topydo. Class that represents the Command Line Interface of Topydo.
Handles input/output of the various subcommand. Handles input/output of the various subcommands.
""" """
def __init__(self): def __init__(self):
super(CLIApplication, self).__init__() super(CLIApplication, self).__init__()
......
...@@ -94,9 +94,9 @@ from topydo.lib.Utils import escape_ansi ...@@ -94,9 +94,9 @@ from topydo.lib.Utils import escape_ansi
class CLIApplicationBase(object): class CLIApplicationBase(object):
""" """
Class that represents the Command Line Interface of Topydo. Base class for Command Line Interfaces (CLI) for topydo.
Handles input/output of the various subcommand. Handles input/output of the various subcommands.
""" """
def __init__(self): def __init__(self):
self.todolist = TodoList.TodoList([]) self.todolist = TodoList.TodoList([])
......
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