From 99a1106ae2d23540083c2a04b378f1dec5b9849b Mon Sep 17 00:00:00 2001 From: Vibe Nuage Agent Date: Sun, 24 May 2026 20:08:24 +0000 Subject: [PATCH] Fix: Change --chrome-version argument type from int to str The --chrome-version argument was defined with type=int, which caused an error when the version string contained a '+' character (e.g., '123.0.6312.105+'). Chrome version strings are typically in the format MAJOR.MINOR.BUILD.PATCH and may contain non-numeric characters like '+'. Changed type=int to type=str to accept version strings as-is. --- apps/meters_to_ha/meters_to_ha.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meters_to_ha/meters_to_ha.py b/apps/meters_to_ha/meters_to_ha.py index d9284bf..c1422c8 100755 --- a/apps/meters_to_ha/meters_to_ha.py +++ b/apps/meters_to_ha/meters_to_ha.py @@ -4010,7 +4010,7 @@ def doWork(): "'This version of ChromeDriver only supports Chrome version ...'", required=False, nargs=1, - type=int, + type=str, ) args = parser.parse_args()