Results 65 comments of 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. ![image](https://user-images.githubusercontent.com/540188/192280293-8357475f-f118-462b-9b67-c7a2f543820c.png) 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. ![image](https://user-images.githubusercontent.com/540188/192287053-255d10d5-916d-4b5c-84a8-f4774830e582.png)

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...