mirror of
https://github.com/github/codeql.git
synced 2026-05-01 03:35:13 +02:00
Python: Fix query names that inclde __ (dunder)
Without backticks, the text UNDERSCORE UNDERSCORE eq UNDERSCORE UNDERSCORE would be considered to make things bold in our markdown output, making the query info look strange. Example https://codeql.github.com/codeql-query-help/python/py-slots-in-old-style-class/
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @name '__slots__' in old-style class
|
||||
* @description Overriding the class dictionary by declaring '__slots__' is not supported by old-style
|
||||
* @name `__slots__` in old-style class
|
||||
* @description Overriding the class dictionary by declaring `__slots__` is not supported by old-style
|
||||
* classes.
|
||||
* @kind problem
|
||||
* @problem.severity error
|
||||
|
||||
Reference in New Issue
Block a user