Skip to content

Commit

Permalink
Appease flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Nov 29, 2018
1 parent 78e597d commit 94f8d2f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/flask_rq2/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ def get_worker(self, *queues):
default_worker = rq.get_worker('default')
default_low_worker = rq.get_worker('default', 'low')
:param \*queues: Names of queues the worker should act on, falls back
to the configured queues.
:param \\*queues: Names of queues the worker should act on, falls back
to the configured queues.
"""
if not queues:
queues = self.queues
Expand Down
12 changes: 6 additions & 6 deletions src/flask_rq2/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def add(x, y):
add.queue(1, 2, timeout=30)
:param \*args: The positional arguments to pass to the queued job.
:param \\*args: The positional arguments to pass to the queued job.
:param \*\*kwargs: The keyword arguments to pass to the queued job.
:param \\*\\*kwargs: The keyword arguments to pass to the queued job.
:param queue: Name of the queue to queue in, defaults to
queue of of job or :attr:`~flask_rq2.RQ.default_queue`.
Expand Down Expand Up @@ -151,9 +151,9 @@ def add(x, y):
add.schedule(datetime(2016, 12, 31, 23, 59, 59), 1, 2)
add.schedule(timedelta(days=14), 1, 2, repeat=1)
:param \*args: The positional arguments to pass to the queued job.
:param \\*args: The positional arguments to pass to the queued job.
:param \*\*kwargs: The keyword arguments to pass to the queued job.
:param \\*\\*kwargs: The keyword arguments to pass to the queued job.
:param queue: Name of the queue to queue in, defaults to
queue of of job or :attr:`~flask_rq2.RQ.default_queue`.
Expand Down Expand Up @@ -230,9 +230,9 @@ def add(x, y):
add.cron('* * * * *', 'add-some-numbers', 1, 2, timeout=10)
:param \*args: The positional arguments to pass to the queued job.
:param \\*args: The positional arguments to pass to the queued job.
:param \*\*kwargs: The keyword arguments to pass to the queued job.
:param \\*\\*kwargs: The keyword arguments to pass to the queued job.
:param pattern: A Crontab pattern.
:type pattern: str
Expand Down

0 comments on commit 94f8d2f

Please sign in to comment.