mirror of
https://codeberg.org/privacy1st/exec-notify
synced 2024-12-22 23:16:04 +01:00
11 lines
202 B
Python
11 lines
202 B
Python
|
from pathlib import Path
|
||
|
|
||
|
|
||
|
def readFirstLine(file: Path) -> str:
|
||
|
"""
|
||
|
:param file: Path to file
|
||
|
:return: first line of file
|
||
|
"""
|
||
|
with open(file, "r") as f:
|
||
|
return f.readline()
|