Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
UpstreamData committed Aug 25, 2022
1 parent 256a4ac commit 51de56f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyasic/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def as_influxdb(self, measurement_name: str = "miner_data"):
tags = ["ip", "mac", "model", "hostname"]
for attribute in self:
if attribute in tags:
tag_data.append(f"{attribute}={self[attribute]}")
tag_data.append(f'{attribute}="{self[attribute]}"')
continue
if isinstance(self[attribute], str):
field_data.append(f'{attribute}="{self[attribute]}"')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyasic"
version = "0.16.3"
version = "0.16.4"
description = "A set of modules for interfacing with many common types of ASIC bitcoin miners, using both their API and SSH."
authors = ["UpstreamData <[email protected]>"]
repository = "https://github.com/UpstreamData/pyasic"
Expand Down

0 comments on commit 51de56f

Please sign in to comment.