fix(services): cleanup a stray get_location
continuous-integration/drone/push Build is failing Details

pull/35/head
Houkime 2023-06-28 09:48:32 +00:00
parent 59fef1d016
commit 35258bad38
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]: