bundlewrap/libs/local.py
2022-11-26 12:24:27 +01:00

8 lines
261 B
Python

from os.path import expanduser, exists
from functools import cache
@cache
def id():
if exists(expanduser('~/.config/bundlewrap/local_id')):
with open(expanduser('~/.config/bundlewrap/local_id'), 'r') as file:
return file.read().strip()