Skip to content

Commit 116e262

Browse files
committed
Add missing override annotations.
1 parent 57732ee commit 116e262

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/ql/src/semmle/python/Exprs.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ class Dict extends Dict_ {
502502
result = this.getAValue() or result = this.getAKey()
503503
}
504504

505-
AstNode getAChildNode() {
505+
override AstNode getAChildNode() {
506506
result = this.getAnItem()
507507
}
508508

python/ql/src/semmle/python/types/ClassObject.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ class ClassObject extends Object {
385385
result.getFunction().refersTo(this)
386386
}
387387

388-
predicate notClass() {
388+
override predicate notClass() {
389389
none()
390390
}
391391

0 commit comments

Comments
 (0)