Format code imports

This commit is contained in:
Griatch 2022-11-10 22:21:12 +01:00
parent 92834aacd0
commit a461a97576
361 changed files with 1019 additions and 754 deletions

View file

@ -5,11 +5,14 @@
Builds a lunr static search index for optimized search
"""
import os
import json
import glob
import json
import os
from argparse import ArgumentParser
from os.path import sep, abspath, dirname, join as joinpath
from os.path import abspath, dirname
from os.path import join as joinpath
from os.path import sep
from lunr import lunr
_DOCS_PATH = dirname(dirname(abspath(__file__)))