From 4ce4f757d77adc773ff0abc9bd5960e5b1dd9a73 Mon Sep 17 00:00:00 2001 From: Yunhua Feng Date: Thu, 23 Aug 2018 18:27:46 +0800 Subject: BaseTools: remove the super() function argument Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng Reviewed-by: Liming Gao --- BaseTools/Source/Python/Common/RangeExpression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BaseTools/Source/Python/Common/RangeExpression.py') diff --git a/BaseTools/Source/Python/Common/RangeExpression.py b/BaseTools/Source/Python/Common/RangeExpression.py index 5449d2d1af..f6c4dcd666 100644 --- a/BaseTools/Source/Python/Common/RangeExpression.py +++ b/BaseTools/Source/Python/Common/RangeExpression.py @@ -347,7 +347,7 @@ class RangeExpression(BaseExpression): def __init__(self, Expression, PcdDataType, SymbolTable = {}): - super(RangeExpression, self).__init__(self, Expression, PcdDataType, SymbolTable) + super().__init__(self, Expression, PcdDataType, SymbolTable) self._NoProcess = False if not isinstance(Expression, type('')): self._Expr = Expression -- cgit v1.2.3