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
Show 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):
...
@@ -37,4 +37,3 @@ class ArchiveCommandTest(CommandTest):
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
test/TestFilter.py
View file @
059f5119
...
@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest):
...
@@ -478,4 +478,3 @@ class PriorityFilterTest(TopydoTest):
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
test/TestPostponeCommand.py
View file @
059f5119
...
@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest):
...
@@ -293,4 +293,3 @@ class PostponeCommandTest(CommandTest):
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
test/TestTopydo.py
View file @
059f5119
...
@@ -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
(
""
)
test/TestView.py
View file @
059f5119
...
@@ -39,4 +39,3 @@ class ViewTest(TopydoTest):
...
@@ -39,4 +39,3 @@ class ViewTest(TopydoTest):
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
topydo/Commands.py
View file @
059f5119
...
@@ -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
)
topydo/cli/CLIApplicationBase.py
View file @
059f5119
...
@@ -226,4 +226,3 @@ class CLIApplicationBase(object):
...
@@ -226,4 +226,3 @@ class CLIApplicationBase(object):
def
run
(
self
):
def
run
(
self
):
raise
NotImplementedError
raise
NotImplementedError
topydo/cli/Prompt.py
View file @
059f5119
...
@@ -121,4 +121,3 @@ def main():
...
@@ -121,4 +121,3 @@ def main():
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
main
()
main
()
topydo/commands/ExitCommand.py
View file @
059f5119
...
@@ -33,4 +33,3 @@ class ExitCommand(Command):
...
@@ -33,4 +33,3 @@ class ExitCommand(Command):
return
False
return
False
sys
.
exit
(
0
)
sys
.
exit
(
0
)
topydo/lib/Command.py
View file @
059f5119
...
@@ -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
topydo/lib/HashListValues.py
View file @
059f5119
...
@@ -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
topydo/lib/Todo.py
View file @
059f5119
...
@@ -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
topydo/lib/TodoBase.py
View file @
059f5119
...
@@ -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
']
topydo/lib/TodoParser.py
View file @
059f5119
...
@@ -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
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