in src/pydolphinscheduler/core/task.py [0:0]
def resource_list(self) -> List[Dict[str, Resource]]:
"""Get task define attribute `resource_list`."""
resources = set()
for res in self._resource_list:
if type(res) == str:
resources.add(
Resource(
name=res, user_name=self.user_name
).get_fullname_from_database()
)
elif type(res) == dict and ResourceKey.NAME in res:
warnings.warn(