From 32f4c8aa17f5e6bfe659385c157233ec9f5647c3 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 21 Jan 2023 11:57:46 +0000 Subject: [PATCH] fix shadowing in build.py --- build.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.py b/build.py index 155cc3a0a..834067c9e 100644 --- a/build.py +++ b/build.py @@ -1,10 +1,9 @@ import glob import os import warnings -from os import path from typing import List -LNBITS_PATH = path.dirname(path.realpath(__file__)) + "/lnbits" +LNBITS_PATH = os.path.dirname(os.path.realpath(__file__)) + "/lnbits" def get_js_vendored(prefer_minified: bool = False) -> List[str]: