Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Aug 12, 2024
1 parent b8eb4a7 commit 5284b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions examples/local-example.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
Run main job (process_task.sh) with the input argument
When done, return the exit code to the token
Attach the logs to the token
'''

import logging
Expand All @@ -21,10 +19,10 @@

from picas.actors import RunActor, RunActorWithStop
from picas.clients import CouchDB
from picas.executers import execute
from picas.iterators import TaskViewIterator
from picas.iterators import EndlessViewIterator
from picas.modifiers import BasicTokenModifier
from picas.executers import execute
from picas.util import Timer

log = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion examples/pushTokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def loadTokens(db):
'exit_code': ''
}
tokens.append(token)
i = i +1
i = i + 1
db.update(tokens)

def get_db():
Expand Down

0 comments on commit 5284b8f

Please sign in to comment.