You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently working on debugging a faulty data package. Trying to understand some parts of the reading.py is challenging for me. Therefore, I am collecting some improvement suggestions here.
Replacing the 51 Lines Dict comprehension with a normal loop and moreover replacing the resource function would make it easier to understand what is happening here.
Therefore I am suggesting changing the lines 185-236 to:
@Bachibouzoukreading.py is the main bottleneck. It's mostly a few quite complex dict-comprehensions, difficult to debug but faster than loops. For performance and simplicity gains, we would need to rework this file.
I am currently working on debugging a faulty data package. Trying to understand some parts of the
reading.py
is challenging for me. Therefore, I am collecting some improvement suggestions here.resource
function would make it easier to understand what is happening here.Therefore I am suggesting changing the lines 185-236 to:
The text was updated successfully, but these errors were encountered: