From 9b14ddcc0cd2530f45089e07dd8d8f4583017b12 Mon Sep 17 00:00:00 2001 From: Jan-Philipp Benecke Date: Mon, 22 Jan 2024 21:49:31 +0100 Subject: [PATCH] Export invalid key exception --- aiotankerkoenig/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/aiotankerkoenig/__init__.py b/aiotankerkoenig/__init__.py index 6ecc1fb..164d9ce 100644 --- a/aiotankerkoenig/__init__.py +++ b/aiotankerkoenig/__init__.py @@ -2,13 +2,18 @@ from __future__ import annotations from .aiotankerkoenig import Tankerkoenig -from .exceptions import TankerkoenigConnectionError, TankerkoenigError +from .exceptions import ( + TankerkoenigConnectionError, + TankerkoenigError, + TankerkoenigInvalidKeyError, +) from .models import GasType, PriceInfo, Sort, Station, Status __all__ = [ "Tankerkoenig", "TankerkoenigError", "TankerkoenigConnectionError", + "TankerkoenigInvalidKeyError", "GasType", "Sort", "Status",