Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openevsehttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ async def set_current(self, amps: int = 6) -> None:
"""Set the soft current limit."""
# 3.x - 4.1.0: use RAPI commands $SC <amps>
# 4.1.2: use HTTP API call

amps = int(amps)
cutoff = AwesomeVersion("4.1.2")
current = AwesomeVersion(self._config["version"])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
VERSION = "0.1.17"
VERSION = "0.1.18"

setup(
name="python-openevse-http",
Expand Down