Oshadha Gunawardena

Results 15 comments of Oshadha Gunawardena

Why this isn't merged yet? Is there any other solution?

@fab120 thanks for the update.

@fab120 I cloned your repo and build it via ```build.sh``` and added ```subMapsOptions: { onRegionClick: function (event, code) { console.log(code); } },``` But I do not see anything on my...

I'm also having this issue, is there a way to get around this..

Yeah, that error message is pretty unhelpful, it's hiding the actual I/O error details. The underlying `std::io::Error` should tell us what's really going on, but it's not being surfaced properly....

I can reproduce this. The issue is that when uv detects a package with `__main__.py`, it's running the file directly instead of executing it as a module, which breaks relative...

@zanieb, @konstin! I've been poking around this issue and think I found the problem. The `PythonPackage` handler is passing the directory path directly to Python instead of using `-m` to...

I see the confusion about the `python -m ./red` syntax in the original example - Python's `-m` flag doesn't accept relative paths like that, it needs just the module name....