Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
059f5119
Commit
059f5119
authored
Oct 08, 2015
by
MinchinWeb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PEP8 W391
blank line at end of file
parent
54053faa
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
0 additions
and
14 deletions
+0
-14
test/TestArchiveCommand.py
test/TestArchiveCommand.py
+0
-1
test/TestFilter.py
test/TestFilter.py
+0
-1
test/TestPostponeCommand.py
test/TestPostponeCommand.py
+0
-1
test/TestTopydo.py
test/TestTopydo.py
+0
-1
test/TestView.py
test/TestView.py
+0
-1
topydo/Commands.py
topydo/Commands.py
+0
-1
topydo/cli/CLIApplicationBase.py
topydo/cli/CLIApplicationBase.py
+0
-1
topydo/cli/Prompt.py
topydo/cli/Prompt.py
+0
-1
topydo/commands/ExitCommand.py
topydo/commands/ExitCommand.py
+0
-1
topydo/lib/Command.py
topydo/lib/Command.py
+0
-1
topydo/lib/HashListValues.py
topydo/lib/HashListValues.py
+0
-1
topydo/lib/Todo.py
topydo/lib/Todo.py
+0
-1
topydo/lib/TodoBase.py
topydo/lib/TodoBase.py
+0
-1
topydo/lib/TodoParser.py
topydo/lib/TodoParser.py
+0
-1
No files found.
test/TestArchiveCommand.py
View file @
059f5119
...
...
@@ -37,4 +37,3 @@ class ArchiveCommandTest(CommandTest):
if
__name__
==
'__main__'
:
unittest
.
main
()
test/TestFilter.py
View file @
059f5119
...
...
@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest):
if
__name__
==
'__main__'
:
unittest
.
main
()
test/TestPostponeCommand.py
View file @
059f5119
...
...
@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest):
if
__name__
==
'__main__'
:
unittest
.
main
()
test/TestTopydo.py
View file @
059f5119
...
...
@@ -25,4 +25,3 @@ class TopydoTest(unittest.TestCase):
Make sure that every test case leaves a clean configuration.
"""
config
(
""
)
test/TestView.py
View file @
059f5119
...
...
@@ -39,4 +39,3 @@ class ViewTest(TopydoTest):
if
__name__
==
'__main__'
:
unittest
.
main
()
topydo/Commands.py
View file @
059f5119
...
...
@@ -110,4 +110,3 @@ def get_subcommand(p_args):
result
=
import_subcommand
(
p_command
)
return
(
result
,
args
)
topydo/cli/CLIApplicationBase.py
View file @
059f5119
...
...
@@ -226,4 +226,3 @@ class CLIApplicationBase(object):
def
run
(
self
):
raise
NotImplementedError
topydo/cli/Prompt.py
View file @
059f5119
...
...
@@ -121,4 +121,3 @@ def main():
if
__name__
==
'__main__'
:
main
()
topydo/commands/ExitCommand.py
View file @
059f5119
...
...
@@ -33,4 +33,3 @@ class ExitCommand(Command):
return
False
sys
.
exit
(
0
)
topydo/lib/Command.py
View file @
059f5119
...
...
@@ -92,4 +92,3 @@ class Command(object):
def
help
(
self
):
""" Returns the help text for this command. """
raise
NotImplementedError
topydo/lib/HashListValues.py
View file @
059f5119
...
...
@@ -81,4 +81,3 @@ def hash_list_values(p_list, p_key=lambda i: i):
result
.
append
((
item
,
_to_base36
(
hash_value
)))
return
result
topydo/lib/Todo.py
View file @
059f5119
...
...
@@ -95,4 +95,3 @@ class Todo(TodoBase):
return
diff
.
days
else
:
return
0
topydo/lib/TodoBase.py
View file @
059f5119
...
...
@@ -226,4 +226,3 @@ class TodoBase(object):
def creation_date(self):
""" Returns the creation date of a todo. """
return self.fields['
creationDate
']
topydo/lib/TodoParser.py
View file @
059f5119
...
...
@@ -103,4 +103,3 @@ def parse_line(p_string):
result['
text
'] = result['
text
'][:-1]
return result
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment