diff options
author | Vratko Polak <vrpolak@cisco.com> | 2024-01-12 14:51:43 +0100 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2024-01-24 12:28:58 +0100 |
commit | 3691ece73cbce1cf874d0b3cf9cbaf45a4f08a78 (patch) | |
tree | 1d297df82001e4f5b5abc633b0bc5f932e04f4f9 /resources/libraries/python/PLRsearch/Integrator.py | |
parent | fcd0677317970062b37e196b4d1a15a135f51cca (diff) |
fix(PLRsearch): fix some pylint violations
- Complexity and logging would require a larger change.
Change-Id: I69f8e47b1806c880cd626bc5a8f5ae6290246093
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/PLRsearch/Integrator.py')
-rw-r--r-- | resources/libraries/python/PLRsearch/Integrator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/PLRsearch/Integrator.py b/resources/libraries/python/PLRsearch/Integrator.py index f80110ce29..cc8f838fe6 100644 --- a/resources/libraries/python/PLRsearch/Integrator.py +++ b/resources/libraries/python/PLRsearch/Integrator.py @@ -189,8 +189,8 @@ def estimate_nd(communication_pipe, scale_coeff=8.0, trace_enabled=False): :raises numpy.linalg.LinAlgError: If the focus shape gets singular (due to rounding errors). Try changing scale_coeff. """ - debug_list = list() - trace_list = list() + debug_list = [] + trace_list = [] # Block until input object appears. ( dimension, |