mirror of
https://github.com/PyRetri/PyRetri.git
synced 2025-06-03 14:49:50 +08:00
10 lines
171 B
Python
10 lines
171 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .collate_fn_impl.collate_fn import CollateFn
|
|
from .collate_fn_base import CollateFnBase
|
|
|
|
__all__ = [
|
|
'CollateFnBase',
|
|
'CollateFn',
|
|
]
|