mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
PEP8 compliance
This commit is contained in:
parent
07f2823618
commit
7e8545a642
@ -1453,9 +1453,11 @@ class ASTFunctionParameter(ASTBase):
|
|||||||
else:
|
else:
|
||||||
self.arg.describe_signature(signode, mode, env, symbol=symbol)
|
self.arg.describe_signature(signode, mode, env, symbol=symbol)
|
||||||
|
|
||||||
|
|
||||||
# backwards-compatible typo
|
# backwards-compatible typo
|
||||||
ASTFunctinoParameter = ASTFunctionParameter
|
ASTFunctinoParameter = ASTFunctionParameter
|
||||||
|
|
||||||
|
|
||||||
class ASTParametersQualifiers(ASTBase):
|
class ASTParametersQualifiers(ASTBase):
|
||||||
def __init__(self, args, volatile, const, refQual, exceptionSpec, override,
|
def __init__(self, args, volatile, const, refQual, exceptionSpec, override,
|
||||||
final, initializer):
|
final, initializer):
|
||||||
@ -2288,6 +2290,7 @@ class ASTDeclaratorNameParamQual(ASTBase):
|
|||||||
if self.paramQual:
|
if self.paramQual:
|
||||||
self.paramQual.describe_signature(signode, mode, env, symbol)
|
self.paramQual.describe_signature(signode, mode, env, symbol)
|
||||||
|
|
||||||
|
|
||||||
# backwards-compatible typo
|
# backwards-compatible typo
|
||||||
ASTDecleratorNameParamQual = ASTDeclaratorNameParamQual
|
ASTDecleratorNameParamQual = ASTDeclaratorNameParamQual
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user