mirror of
https://github.com/github/codeql.git
synced 2026-01-14 06:54:48 +01:00
10 lines
237 B
Python
10 lines
237 B
Python
class Annotation:
|
|
#...
|
|
pass
|
|
|
|
def print_annotation(annotation):
|
|
print("Message: " + annotation.message)
|
|
print("Line: " + annotation.line)
|
|
print("Offset: " + annotation.offset)
|
|
print("Length: " + annotation.length)
|