Convert doxygen to rst for Firmware update plugins

This commit is contained in:
Nino van Hooff 2020-05-08 15:46:02 +02:00
parent 54d2fe95d1
commit 6ca9b4678e
3 changed files with 20 additions and 12 deletions

View file

@ -21,8 +21,9 @@ from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("cura")
## This job checks if there is an update available on the provided URL.
class FirmwareUpdateCheckerJob(Job):
"""This job checks if there is an update available on the provided URL."""
STRING_ZERO_VERSION = "0.0.0"
STRING_EPSILON_VERSION = "0.0.1"
ZERO_VERSION = Version(STRING_ZERO_VERSION)