added type annotation

This commit is contained in:
Kristian Krsnik 2023-08-02 20:48:06 +02:00
parent e732a3457d
commit b9960c46a3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import requests, json, re, os
from datetime import datetime
def loadSettings(path = f"{os.path.expanduser('~')}/.config/dyn-gandi/config.json") -> dict:
def loadSettings(path: str = f"{os.path.expanduser('~')}/.config/dyn-gandi/config.json") -> dict:
# TODO: check integrity
try:
with open(path, 'r') as file: