eblis
eblis
I had a look at the changes. From what I can tell the new changes will have 2 new steps for the progress, one of which is the whole sort()...
I have created a pull request with my proposed solution implemented. I've tweaked the solution a bit so it calls callback function with integers instead of floats and only calls...
You can use the following script to check the progress updates. ``` import functools import pathlib import asammdf from tqdm import tqdm def load_progress(progress_bar: tqdm, current, total): if progress_bar.total !=...
Are you converting to dataframe or not ? Could it be related to https://github.com/danielhrisca/asammdf/issues/770 ?
Hey, sorry, I completely missed the updates in this issue. What do you need done ?
From what I can tell the relevant code has been moved to another repository called `poetry-core`.
If you have time could you also look in #231 ? I tried to build the code myself but have lots of missing dependencies and not sure when i'll have...
Well, I have found the code where the problem occurs.  Shouldn't it be trying to convert to `float` first, and if that fails convert to `bytes` ? The conversion...
Switching the conversions around, i.e. trying to convert to `float` first and if that fails try `bytes` I get the correct (expected) result. 
Anything can be converted to strings, so it never tries to convert to float. I'm not sure about sending a file, I will need to check and get back to...