Paul McCarty

Results 6 comments of Paul McCarty

A "me too" here. It happens when the preview auto-updates after typing. Same `ENOENT` error. Seems worse when I type quickly. Feels like a race condition.

I'm currently getting bit by what may be this very issue, processing real data that's flirting with the max for a 128-bit-width Decimal. If there's more head-room there that may...

Could it be the file list? Glancing at the code, it looks like that's all read into memory then sits around there. Might have to find a way to work...

> Do you run into this kind of problem a lot for reference? Nah. I doubt I have enough files for it to be a real problem. Could be if...

Only way to lower that significantly is probably to read in a fixed count of entries (maybe even just one), work on those, then read the next batch. Treat it...

Just hit the same problem. Changing the import line in `asana2sql.py` to `from asana2sql.Project import Project` (change: capitalized the first `Project`) seems to have gotten me past it. My best...