in assets/assets/utils/common_utils.py [0:0]
def run(self) -> bool:
"""
Launch file processing pipeline
"""
logger_.debug(f"Launch file processing pipeline for {self.file_name=}")
return (
self.is_extension_correct()
and self.is_blank_created()
and self.is_converted_file()
and self.is_inserted_to_database()
and self.is_uploaded_to_storage()
and self.is_original_file_uploaded_to_storage()
and self.is_file_updated()
)