remove outdated comment

This commit is contained in:
DavHau
2023-12-01 16:11:31 +07:00
parent 1b294846c7
commit 3c68b201c7

View File

@@ -11,7 +11,6 @@ from ..locked_open import locked_open
async def add_flake(path: Path) -> dict[str, CmdOut]: async def add_flake(path: Path) -> dict[str, CmdOut]:
user_history_file().parent.mkdir(parents=True, exist_ok=True) user_history_file().parent.mkdir(parents=True, exist_ok=True)
# append line to history file # append line to history file
# TODO: Make this atomic
lines: set = set() lines: set = set()
old_lines = set() old_lines = set()
with locked_open(user_history_file(), "w+") as f: with locked_open(user_history_file(), "w+") as f: