Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Isaac Milarsky <[email protected]>
  • Loading branch information
IsaacMilarky committed Dec 5, 2023
1 parent d502e28 commit 23f86a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tests/metrics_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ def run_pylint():
item['annotation_level'] = 'warning'
item['end_line'] = item.pop('endLine')
if item['end_line'] is None:
item['end_line'] = -1
item['end_line'] = item['line']

item['start_line'] = item.pop('line')
item['start_column'] = item.pop('column')
item['end_column'] = item.pop('endColumn')
if item['end_column'] is None:
item['end_column'] = -1
item['end_column'] = item['column']
item['title'] = item.pop('symbol')

item.pop('module')
Expand Down

0 comments on commit 23f86a9

Please sign in to comment.