Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsayre committed Jul 12, 2023
1 parent 0e2c90a commit ca4917e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pysmartthings/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Define consts for the pysmartthings package."""

__title__ = "pysmartthings"
__version__ = "0.7.7"
__version__ = "0.7.8"
2 changes: 1 addition & 1 deletion script/generate_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
attribs = [a for a in ATTRIBUTES]
attribs.sort()
for a in attribs:
print("{} = '{}'".format(re.sub(r"([A-Z])", r"_\1", a).lower(), a))
print('{} = "{}"'.format(re.sub(r"([A-Z])", r"_\1", a).lower(), a))


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion script/generate_capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
capabilities = CAPABILITIES.copy()
capabilities.sort()
for c in capabilities:
print("{} = '{}'".format(re.sub(r"([A-Z])", r"_\1", c).lower(), c))
print('{} = "{}"'.format(re.sub(r"([A-Z])", r"_\1", c).lower(), c))


if __name__ == "__main__":
Expand Down

0 comments on commit ca4917e

Please sign in to comment.