From 60d5aceba7ae3eb9dfbe39266aef079febdae73d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 26 Sep 2022 23:10:43 +0000 Subject: [PATCH] python: Export __version__ in location module Signed-off-by: Michael Tremer --- src/python/location/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python/location/__init__.py b/src/python/location/__init__.py index f635737..5d6710d 100644 --- a/src/python/location/__init__.py +++ b/src/python/location/__init__.py @@ -19,6 +19,7 @@ # Import everything from the C module from _location import * +from _location import __version__ # Initialise logging from . import logger -- 2.39.5