Is there a way to cite TV Shows and Episodes with the MLA style?

Hello again,
I am not sure what happened, but when I opened the document today, Typst flagged an issue with the code that I don’t know how to fix.

Failed to parse YAML (invalid type: string “televisions.csl”, expected a map between cite keys and entries at 1:1)

I made no changes to the code that worked until yesterday:

#bibliography(
  ( "Bibliography.yaml",
    "Bachelor Bibliography.bib",
bytes("television.csl")),
style: "modern-language-association",
title: [#underline[Work Cited]])

I tried changing it to:

#bibliography(
  ( "Bibliography.yaml",
    "Bachelor Bibliography.bib",
bytes("televisions")),
style: "modern-language-association",
title: [#underline[Work Cited]])

to reference

#let tv = cite.with(style: "television.csl")
#let televisions = yaml("Bibliography.yaml")

The error code remained. I checked the YAML file, and it’s still identical to your solution.
My research on how to solve this issue is once again just leading me in circles. Any idea what happened and how I can fix it? Thank you!