From ee03e82f45ae54ba2a1dca68c509f3b09a6e55cf Mon Sep 17 00:00:00 2001 From: Shiwei-Shen Date: Tue, 11 Jul 2023 12:09:35 +0200 Subject: [PATCH] fix charge_point example not working --- examples/v201/charge_point.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/v201/charge_point.py b/examples/v201/charge_point.py index e8bc9a879..a74b80047 100644 --- a/examples/v201/charge_point.py +++ b/examples/v201/charge_point.py @@ -13,8 +13,8 @@ sys.exit(1) -from ocpp.v20 import ChargePoint as cp -from ocpp.v20 import call +from ocpp.v201 import ChargePoint as cp +from ocpp.v201 import call logging.basicConfig(level=logging.INFO)