Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Mar 20, 2024
1 parent 82dbf56 commit a608479
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/example_grover_subset.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"\n",
"\n",
"@qlassf\n",
"def subset_sum(ii: Tuple[Qint[2], Qint[2]], set_: Parameter[Qlist[Qint3, 4]]) -> Qint[3]:\n",
"def subset_sum(\n",
" ii: Tuple[Qint[2], Qint[2]], set_: Parameter[Qlist[Qint3, 4]]\n",
") -> Qint[3]:\n",
" return set_[ii[0]] + set_[ii[1]] if ii[0] != ii[1] else 0"
]
},
Expand Down

0 comments on commit a608479

Please sign in to comment.