Commit 0e44d6b2 authored by Jason R. Coombs's avatar Jason R. Coombs

I checked this syntax, then failed to update the code before committing.

parent b8846607
......@@ -91,7 +91,7 @@ _state_vars = {}
def _declare_state(vartype, **kw):
globals().update(kw)
_state_vars.update(dict.from_keys(kw, vartype))
_state_vars.update(dict.fromkeys(kw, vartype))
def __getstate__():
state = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment