Skip to content

Commit

Permalink
Fixing PY2 syntax bug
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Feb 8, 2023
1 parent 91c1491 commit ef37e6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion octoeverywhere/webcamhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class WebcamSettingItem:
# snapshotUrl OR streamUrl can be None if the values aren't available, but not both.
# flipHBool & flipVBool & rotationInt must exist.
# rotationInt must be 0, 90, 180, or 270
def __init__(self, snapshotUrl, streamUrl, flipHBool, flipVBool, rotationInt) -> None:
def __init__(self, snapshotUrl, streamUrl, flipHBool, flipVBool, rotationInt):
self.SnapshotUrl = snapshotUrl
self.StreamUrl = streamUrl
self.FlipH = flipHBool
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
# Note that this is also parsed by the moonraker module to pull the version, so the string and format must remain the same!
plugin_version = "2.3.0"
plugin_version = "2.3.1"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit ef37e6c

Please sign in to comment.