Skip to content

Commit 05e950d

Browse files
Fix a typo that was breaking OneFuseManager.
1 parent d7e453e commit 05e950d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

onefuse/admin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import requests
77
import socket
88
import logging
9+
from typing import List
910
from requests.auth import HTTPBasicAuth
1011
from os import path
1112
from uuid import uuid1
@@ -1378,7 +1379,7 @@ def ingest_name(self, policy_name: str, name: str,
13781379
return response_json
13791380

13801381
def ingest_dns_reservation(self, policy_name: str, name: str,
1381-
records: list[dict],
1382+
records: List[dict],
13821383
template_properties: dict = None,
13831384
tracking_id: str = ""):
13841385
"""

0 commit comments

Comments
 (0)