removed 'abstract_expected_files'

This commit is contained in:
Jakub Trllo 2022-09-23 18:46:23 +02:00
parent 38387fc899
commit 97f368c3a5

View file

@ -1,32 +0,0 @@
# -*- coding: utf-8 -*-
"""Content was moved to 'openpype.pipeline.publish.abstract_expected_files'.
Please change your imports as soon as possible.
File will be probably removed in OpenPype 3.14.*
"""
import warnings
from openpype.pipeline.publish import ExpectedFiles
class ExpectedFilesDeprecated(DeprecationWarning):
pass
warnings.simplefilter("always", ExpectedFilesDeprecated)
warnings.warn(
(
"Content of 'abstract_expected_files' was moved."
"\nUsing deprecated source of 'abstract_expected_files'. Content was"
" move to 'openpype.pipeline.publish.abstract_expected_files'."
" Please change your imports as soon as possible."
),
category=ExpectedFilesDeprecated,
stacklevel=4
)
__all__ = (
"ExpectedFiles",
)