mirror of
https://github.com/open-mmlab/mmcv.git
synced 2025-06-03 21:54:52 +08:00
6 lines
172 B
Python
6 lines
172 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from mmcv import Config # isort:skip
|
|
|
|
cfg = Config.fromfile('./tests/data/config/a.py')
|
|
item5 = cfg.item1[0] + cfg.item2.a
|