format with blank and pylint

This commit is contained in:
2025-04-18 20:50:32 +02:00
parent 582ef21042
commit 39550b392d
4 changed files with 75 additions and 58 deletions

View File

@ -1,10 +1,14 @@
#!/usr/bin/python3
"""
This script belongs to wirepy and is for the auto start of the tunnel
"""
from pathlib import Path
from subprocess import check_call
path_to_file = Path(Path.home() / ".config/wire_py/settings")
with open(path_to_file, "r") as a_con:
with open(path_to_file, "r", encoding="utf-8") as a_con:
# This funtion is for the independent autostart of the previously selected tunnel
lines = a_con.readlines()
a_con = lines[7].strip()
if a_con != "off":