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

Fix line length

parent 7f440875
Branches
No related tags found
No related merge requests found
...@@ -1097,7 +1097,8 @@ class CallInstruction(MultiAssignmentBase): ...@@ -1097,7 +1097,8 @@ class CallInstruction(MultiAssignmentBase):
for temp_var_type in temp_var_types: for temp_var_type in temp_var_types:
if temp_var_type is lp.auto: if temp_var_type is lp.auto:
warn("temp_var_type should be Optional(None) if " warn("temp_var_type should be Optional(None) if "
"unspecified, not auto. This usage will be disallowed soon.", "unspecified, not auto. "
"This usage will be disallowed soon.",
DeprecationWarning, stacklevel=2) DeprecationWarning, stacklevel=2)
temp_var_type = lp.Optional(None) temp_var_type = lp.Optional(None)
processed_temp_var_types.append(temp_var_type) processed_temp_var_types.append(temp_var_type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment