Skip to content

Commit ca4917e

Browse files
committed
Version bump
1 parent 0e2c90a commit ca4917e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pysmartthings/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Define consts for the pysmartthings package."""
22

33
__title__ = "pysmartthings"
4-
__version__ = "0.7.7"
4+
__version__ = "0.7.8"

script/generate_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def main():
1212
attribs = [a for a in ATTRIBUTES]
1313
attribs.sort()
1414
for a in attribs:
15-
print("{} = '{}'".format(re.sub(r"([A-Z])", r"_\1", a).lower(), a))
15+
print('{} = "{}"'.format(re.sub(r"([A-Z])", r"_\1", a).lower(), a))
1616

1717

1818
if __name__ == "__main__":

script/generate_capabilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def main():
1212
capabilities = CAPABILITIES.copy()
1313
capabilities.sort()
1414
for c in capabilities:
15-
print("{} = '{}'".format(re.sub(r"([A-Z])", r"_\1", c).lower(), c))
15+
print('{} = "{}"'.format(re.sub(r"([A-Z])", r"_\1", c).lower(), c))
1616

1717

1818
if __name__ == "__main__":

0 commit comments

Comments
 (0)