Skip to content

Commit

Permalink
Remove backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
liZe committed Sep 4, 2020
1 parent 89ab158 commit 254f8fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions weasyprint/css/computed_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ def compute(element, pseudo_type, specified, computed, parent_style,
value = [value]

for i, v in enumerate(value):
value[i], already_computed_value = \
compute_variable(v, name, computed, base_url, parent_style)
value[i], already_computed_value = compute_variable(
v, name, computed, base_url, parent_style)

if converted_to_list:
value, = value
Expand Down

0 comments on commit 254f8fa

Please sign in to comment.