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
040534b6
Commit
040534b6
authored
Oct 08, 2015
by
MinchinWeb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PEP8 E125
continuation line with same indent as next logical line
parent
e880112e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
topydo/lib/TodoBase.py
topydo/lib/TodoBase.py
+1
-1
topydo/lib/TodoList.py
topydo/lib/TodoList.py
+2
-2
No files found.
topydo/lib/TodoBase.py
View file @
040534b6
...
...
@@ -145,7 +145,7 @@ class TodoBase(object):
"""
if not self.is_completed() and
\
(p_priority == None or is_valid_priority(p_priority)):
(p_priority == None or is_valid_priority(p_priority)):
self.fields['
priority
'] = p_priority
...
...
topydo/lib/TodoList.py
View file @
040534b6
...
...
@@ -66,7 +66,7 @@ class TodoList(TodoListBase):
# connect all tasks we have in memory so far that refer to this
# task
for
dep
in
\
[
dep
for
dep
in
self
.
_todos
if
dep
.
has_tag
(
'p'
,
dep_id
)]:
[
dep
for
dep
in
self
.
_todos
if
dep
.
has_tag
(
'p'
,
dep_id
)]:
self
.
_depgraph
.
add_edge
(
hash
(
p_todo
),
hash
(
dep
),
dep_id
)
...
...
@@ -148,7 +148,7 @@ class TodoList(TodoListBase):
self
.
append
(
p_to_todo
,
"@{}"
.
format
(
context
))
if
p_from_todo
!=
p_to_todo
and
not
self
.
_depgraph
.
has_edge
(
hash
(
p_from_todo
),
hash
(
p_to_todo
)):
hash
(
p_from_todo
),
hash
(
p_to_todo
)):
dep_id
=
None
if
p_from_todo
.
has_tag
(
'id'
):
...
...
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