Remove unneeded ()

CURA-7689
This commit is contained in:
Jaime van Kessel 2021-07-29 11:40:11 +02:00
parent 358ba8c34a
commit 3436a2171e
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -112,7 +112,7 @@ class FirmwareUpdateCheckerJob(Job):
# The first time we want to store the current version, the notification will not be shown,
# because the new version of Cura will be release before the firmware and we don't want to
# notify the user when no new firmware version is available.
if (checked_version != "") and (checked_version != current_version):
if checked_version != "" and checked_version != current_version:
Logger.log("i", "Showing firmware update message for new version: {version}".format(version = current_version))
message = FirmwareUpdateCheckerMessage(machine_id, self._machine_name, current_version,
self._lookups.getRedirectUserUrl())