mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
22 lines
310 B
Python
22 lines
310 B
Python
# name:no_annotated_call
|
|
def no_annotated_call():
|
|
pass
|
|
|
|
def callable_not_annotated():
|
|
pass
|
|
|
|
no_annotated_call()
|
|
# calls:callable_not_annotated
|
|
callable_not_annotated()
|
|
|
|
# name:non_unique
|
|
def non_unique():
|
|
pass
|
|
|
|
# name:non_unique
|
|
def too_much_copy_paste():
|
|
pass
|
|
|
|
# calls:non_unique
|
|
non_unique()
|