Skip to content

Commit

Permalink
Fixed issues reported by pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Aug 12, 2023
1 parent bc8100f commit a9cd7cd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/modules/executors/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ Module Contents

.. autoclass:: BaseExecutor
:members:

2 changes: 1 addition & 1 deletion docs/modules/schedulers/qt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ API
Introduction
------------

QtScheduler lets you integrate APScheduler with your `PySide2 <https://wiki.qt.io/Qt_for_Python>`, `PySide <https://en.wikipedia.org/wiki/PySide>` or
QtScheduler lets you integrate APScheduler with your `PySide <https://en.wikipedia.org/wiki/PySide>`_ or
`PyQt <http://www.riverbankcomputing.co.uk/software/pyqt/intro>`_ application.

.. list-table::
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ job's ``misfire_grace_time`` option (which can be set on per-job basis or global
scheduler) to see if the execution should still be triggered. This can lead into the job being
executed several times in succession.

If this behavior is undesirable for your particular use case, it is possible to use `coalescing` to
If this behavior is undesirable for your particular use case, it is possible to use ``coalescing`` to
roll all these missed executions into one. In other words, if coalescing is enabled for the job and
the scheduler sees one or more queued executions for the job, it will only trigger it once. No
misfire events will be sent for the "bypassed" runs.
Expand Down

0 comments on commit a9cd7cd

Please sign in to comment.