Skip to content
Snippets Groups Projects
Commit 3bfff8b6 authored by Joseph Weston's avatar Joseph Weston
Browse files

remove use of deprecated '+=' in favour of 'update'

parent e21b2c93
Branches
Tags
No related merge requests found
...@@ -271,8 +271,8 @@ def test_fd_mismatch(): ...@@ -271,8 +271,8 @@ def test_fd_mismatch():
# combine the previous two # combine the previous two
syst3 = kwant.Builder(T) syst3 = kwant.Builder(T)
syst3 += syst1 syst3.update(syst1)
syst3 += syst2 syst3.update(syst2)
for syst in (syst1, syst2, syst3): for syst in (syst1, syst2, syst3):
wraparound(syst) wraparound(syst)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment