Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def dummy_function():

def new_dummy_function():
print('foobar')
raise NotImplemented # skipcq: pyl-e0702
raise NotImplementedError # skipcq: pyl-e0702
2 changes: 1 addition & 1 deletion sample_without_trailing_newline.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def dummy_function():
def new_dummy_function():
print('foobar')
# This is a comment, we test whether the next line gets highlighted
raise NotImplemented # raise an issue here
raise NotImplementedError # raise an issue here