mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
* Add code spell check hook * Add codespell config * Fix a lot of typos. * Add formating.py to keep compatibility.
10 lines
301 B
Python
10 lines
301 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
# flake8: noqa
|
|
import warnings
|
|
|
|
from .formatting import *
|
|
|
|
warnings.warn('DeprecationWarning: mmcls.datasets.pipelines.formating will be '
|
|
'deprecated in 2021, please replace it with '
|
|
'mmcls.datasets.pipelines.formatting.')
|