dns_records = []
with open(zone_file_path,"r") as stream:
content = stream.read()
records: list[Record] = zonefile_parser.parse(content)
print(records) # it will throw error because of incorrect implement of repr
return dns_records
print(records) # it will throw error because of incorrect implement of repr