mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-10 09:19:42 +01:00
fix shadowing in build.py
This commit is contained in:
parent
15d7fbeace
commit
32f4c8aa17
1 changed files with 1 additions and 2 deletions
3
build.py
3
build.py
|
@ -1,10 +1,9 @@
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import warnings
|
import warnings
|
||||||
from os import path
|
|
||||||
from typing import List
|
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]:
|
def get_js_vendored(prefer_minified: bool = False) -> List[str]:
|
||||||
|
|
Loading…
Add table
Reference in a new issue