mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-19 06:43:06 +02:00
viewport: Use add instead of append
This commit is contained in:
parent
7d23805ad6
commit
ef2842f217
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class ViewPort(object):
|
|||
elif token.startswith('!-'):
|
||||
tokens_to_remove.add(token)
|
||||
tokens_to_remove.add('+' + token[2:])
|
||||
tokens_to_add.append('-' + token[2:])
|
||||
tokens_to_add.add('-' + token[2:])
|
||||
elif token.startswith('!?'):
|
||||
tokens_to_remove.add(token)
|
||||
tokens_to_remove.add('+' + token[2:])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue