Skip to content

Commit 3ff16e9

Browse files
GeorgOstrovskiThe ml_collections Authors
authored andcommitted
Internal change only.
PiperOrigin-RevId: 797749449
1 parent 95c20f4 commit 3ff16e9

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

ml_collections/config_dict/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from .config_dict import required_placeholder
2828
from .config_dict import RequiredValueError
2929

30+
3031
__all__ = ("_Op", "ConfigDict", "create", "CustomJSONEncoder", "FieldReference",
3132
"FrozenConfigDict", "JSONDecodeError", "MutabilityError",
3233
"placeholder", "recursive_rename", "required_placeholder",

ml_collections/config_dict/config_dict.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2108,3 +2108,5 @@ def recursive_rename(conf, old_name, new_name):
21082108
else:
21092109
setattr(new_conf, name, new_c)
21102110
return new_conf
2111+
2112+

ml_collections/config_dict/tests/config_dict_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,5 +1665,7 @@ def testCycle(self):
16651665
config.a = config.get_ref('b')
16661666

16671667

1668+
1669+
16681670
if __name__ == '__main__':
16691671
absltest.main()

0 commit comments

Comments
 (0)