mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-14 23:24:40 -04:00
📚 docsstring init
This commit is contained in:
parent
0c61380b10
commit
48e5b42df3
3 changed files with 22 additions and 4 deletions
|
@ -21,11 +21,13 @@ with open(path.join(__path__[0], "hotspots.json")) as hotspot_file:
|
|||
|
||||
class ConfigProvider():
|
||||
"""
|
||||
Configure `Bibata` building process.
|
||||
Configure `Bibata` building process 🔧.
|
||||
"""
|
||||
|
||||
def __init__(self, bitmaps_dir: str, out_dir: str) -> None:
|
||||
|
||||
"""
|
||||
docsstring
|
||||
"""
|
||||
# cleanup old packages
|
||||
if path.exists(out_dir):
|
||||
shutil.rmtree(out_dir)
|
||||
|
@ -43,6 +45,9 @@ class ConfigProvider():
|
|||
self.out_dir: str = out_dir
|
||||
|
||||
def get_windows_script(self, theme_name: str) -> str:
|
||||
"""
|
||||
docsstring
|
||||
"""
|
||||
with open(path.join(__path__[0], "windows.inf")) as f:
|
||||
data = f.read()
|
||||
inf_content = data.replace(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue