We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26dd6b1 commit b49bf51Copy full SHA for b49bf51
README.md
@@ -38,8 +38,6 @@ We can create a python script which is named `test_simple.py`
38
from potc import transvars
39
from treevalue import FastTreeValue, raw
40
41
-from potc_treevalue.plugin import __rules__
42
-
43
r = raw({'a': 1, 'b': 2, 'c': [3, 4]})
44
t = FastTreeValue({
45
'a': 1, 'b': 'this is a string',
@@ -52,7 +50,6 @@ st = t._detach()
52
50
if __name__ == '__main__':
53
51
_code = transvars(
54
{'t': t, 'st': t._detach(), 'r': r},
55
- trans=[__rules__],
56
reformat='pep8'
57
)
58
print(_code)
0 commit comments