Skip to content

Commit 5360192

Browse files
Apply review suggestions - change = to in
Co-authored-by: Rasmus Wriedt Larsen <[email protected]>
1 parent 5494389 commit 5360192

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/ql/lib/semmle/python/security/dataflow/CleartextLoggingCustomizations.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module CleartextLogging {
4141
*/
4242
class SensitiveDataSourceAsSource extends Source, SensitiveDataSource {
4343
SensitiveDataSourceAsSource() {
44-
not SensitiveDataSource.super.getClassification() =
44+
not SensitiveDataSource.super.getClassification() in
4545
[SensitiveDataClassification::id(), SensitiveDataClassification::certificate()]
4646
}
4747

python/ql/lib/semmle/python/security/dataflow/CleartextStorageCustomizations.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module CleartextStorage {
4040
*/
4141
class SensitiveDataSourceAsSource extends Source, SensitiveDataSource {
4242
SensitiveDataSourceAsSource() {
43-
not SensitiveDataSource.super.getClassification() =
43+
not SensitiveDataSource.super.getClassification() in
4444
[SensitiveDataClassification::id(), SensitiveDataClassification::certificate()]
4545
}
4646

0 commit comments

Comments
 (0)