mirror of
https://github.com/github/codeql.git
synced 2026-06-24 14:17:05 +02:00
5 lines
174 B
Python
5 lines
174 B
Python
def print_annotation(message, line, offset, length):
|
|
print("Message: " + message)
|
|
print("Line: " + line)
|
|
print("Offset: " + offset)
|
|
print("Length: " + length) |