Skip to content

Commit d8a7e55

Browse files
authored
Exclude check for cyclic imports by CodeQL (#4384)
* exclude check for cyclic imports by CodeQL * also exclude py/unsafe-cyclic-import
1 parent 2d8d81c commit d8a7e55

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/codeql.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ query-filters:
1010
- exclude:
1111
id: py/missing-call-to-init
1212
- exclude:
13-
id: py/method-first-arg-is-not-self
13+
id: py/method-first-arg-is-not-self
14+
- exclude:
15+
id: py/cyclic-import
16+
- exclude:
17+
id: py/unsafe-cyclic-import
1418
paths:
1519
- manim
1620
paths-ignore:

0 commit comments

Comments
 (0)