Skip to content
Snippets Groups Projects
Commit c4891c71 authored by Matt Wala's avatar Matt Wala
Browse files

flake8 fixes

parent 5201ec1f
No related branches found
No related tags found
1 merge request!124Remove numpy dtypes from ArgExtFunction and SegmentedFunction
Pipeline #
......@@ -385,7 +385,6 @@ def _hackily_ensure_multi_assignment_return_values_are_scoped_private(kernel):
newly_added_assignments_ids.add(new_assignment_id)
import loopy as lp
new_temporaries[new_assignee_name] = (
TemporaryVariable(
name=new_assignee_name,
......
......@@ -186,7 +186,7 @@ def test_tuple(ctx_factory):
a, b = make_tuple(1, 2.)
""")
evt, (a,b) = knl(queue)
evt, (a, b) = knl(queue)
assert a.get() == 1
assert b.get() == 2.
......
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