diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-08-23 18:27:46 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-10-13 09:50:43 +0800 |
commit | 4ce4f757d77adc773ff0abc9bd5960e5b1dd9a73 (patch) | |
tree | 13c14591e35f7f168bed60e244c71124ba2c2191 /BaseTools/Source/Python/Common/RangeExpression.py | |
parent | 5135cc48529a2de1801ad826fb5644dc508285e2 (diff) | |
download | edk2-4ce4f757d77adc773ff0abc9bd5960e5b1dd9a73.tar.gz edk2-4ce4f757d77adc773ff0abc9bd5960e5b1dd9a73.tar.bz2 edk2-4ce4f757d77adc773ff0abc9bd5960e5b1dd9a73.zip |
BaseTools: remove the super() function argument
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Common/RangeExpression.py')
-rw-r--r-- | BaseTools/Source/Python/Common/RangeExpression.py | 2 |
1 files changed, 1 insertions, 1 deletions
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
|