Skip to content
Snippets Groups Projects
Commit 5c2fef21 authored by David Schäfer's avatar David Schäfer
Browse files

black

parent 1d026c6b
Branches get_set_item
No related tags found
1 merge request!610Draft: Slicing Support
Pipeline #146941 failed with stages
in 4 minutes and 5 seconds
......@@ -156,7 +156,11 @@ class SaQC(FunctionsMixin):
tmp = {}
try:
for lkey, rkey in zip(lkeys, rkeys):
tmp[lkey] = [self._data[lkey], self._flags[lkey], self._flags.history[lkey]]
tmp[lkey] = [
self._data[lkey],
self._flags[lkey],
self._flags.history[lkey],
]
self._data[lkey] = obj._data[rkey]
self._flags[lkey] = obj._flags[rkey]
self._flags.history[lkey] = obj._flags.history[rkey]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment