De-conflict write_nfo naming

This commit is contained in:
tcely 2025-06-02 10:14:07 -04:00 committed by GitHub
parent c89c4ec28e
commit 90329a16f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ from ._migrations import (
from ._private import _srctype_dict, _nfo_element, directory_and_stem from ._private import _srctype_dict, _nfo_element, directory_and_stem
from .media__tasks import ( from .media__tasks import (
copy_thumbnail, download_checklist, download_finished, copy_thumbnail, download_checklist, download_finished,
wait_for_premiere, write_nfo, wait_for_premiere, write_nfo as write_nfo_file,
) )
from .source import Source from .source import Source
@ -1227,5 +1227,5 @@ Media.copy_thumbnail = copy_thumbnail
Media.download_checklist = download_checklist Media.download_checklist = download_checklist
Media.download_finished = download_finished Media.download_finished = download_finished
Media.wait_for_premiere = wait_for_premiere Media.wait_for_premiere = wait_for_premiere
Media.write_nfo = write_nfo Media.write_nfo_file = write_nfo_file