We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a895e commit 53598baCopy full SHA for 53598ba
src/abstract_charm.py
@@ -51,8 +51,12 @@ def is_compatible(
51
return False
52
53
# Check workload version compatibility
54
- old_major, old_minor, old_patch = (int(component) for component in old_workload_version.split("."))
55
- new_major, new_minor, new_patch = (int(component) for component in new_workload_version.split("."))
+ old_major, old_minor, old_patch = (
+ int(component) for component in old_workload_version.split(".")
56
+ )
57
+ new_major, new_minor, new_patch = (
58
+ int(component) for component in new_workload_version.split(".")
59
60
if old_major != new_major:
61
62
if new_minor > old_minor:
0 commit comments