fix(services): cleanup a stray get_location

pull/35/head
Houkime 2023-06-28 09:48:32 +00:00 committed by Inex Code
parent 2dd9da9a96
commit 1fb5e3af97
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def get_disabled_services() -> list[Service]:
def get_services_by_location(location: str) -> list[Service]:
return [service for service in services if service.get_location() == location]
return [service for service in services if service.get_drive() == location]
def get_all_required_dns_records() -> list[ServiceDnsRecord]: