Skip to content

Commit a971d61

Browse files
Use bias in the CLI and make model objects immutable (#66)
* Use bias in the CLI * Make model objects immutable and improve dotdict
1 parent b2f1b64 commit a971d61

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

overreact/io.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from collections.abc import MutableMapping
66
from collections import defaultdict
7+
from copy import deepcopy as _deepcopy
78
import json
89
import logging
910
import os

overreact/misc.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
import overreact as rx
1515
from overreact import constants
16+
from overreact import core as _core
1617

1718

1819
def _find_package(package):

0 commit comments

Comments
 (0)