Skip to content

Commit da40b62

Browse files
authored
chore: fix lint error in job.py module (#103)
1 parent 5ba6397 commit da40b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/bigquery/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3116,7 +3116,7 @@ def _format_for_exception(query, job_id):
31163116
template = "\n\n(job ID: {job_id})\n\n{header}\n\n{ruler}\n{body}\n{ruler}"
31173117

31183118
lines = query.splitlines()
3119-
max_line_len = max(len(l) for l in lines)
3119+
max_line_len = max(len(line) for line in lines)
31203120

31213121
header = "-----Query Job SQL Follows-----"
31223122
header = "{:^{total_width}}".format(header, total_width=max_line_len + 5)

0 commit comments

Comments
 (0)