Sam Grayson

Results 80 comments of Sam Grayson

One page (`getconf PAGESIZE`) probably makes sense as a maximum; no need to provide a flag to change that.

@rossbar: > I'd advocate for adding [stubtest](https://mypy.readthedocs.io/en/stable/stubtest.html) to the CI (and potentially as a pre-commit hook, if necessary) to guarantee that the stubs stay in sync with the actual signatures....

In my experience, checking method spelling statically is useful because it prevents runtime errors that would might otherwise occur much later in the execution. I don't think these stubs prevent...

>>> In my experience, checking method spelling statically is useful because it prevents runtime errors that would might otherwise occur much later in the execution. >>> >> Um, tell me...

Well anyway, I've removed the `Incomplete | None` type stubs from the repo.

@doronbehar My work around is to build the current `master` branch of tectonic from source. The easiest way to do that is a Nix flake (which also takes care of...

I found this error in [41b02a0 (2020-10-10)](https://github.com/jacereda/fsatrace/commit/41b02a096d166d6e05332a95f3ce63865b3e3ce5), which is currently packaged in Nixpkgs, but it seems to work in the latest commit [c031f8da (2022-03-30)](e8f5456173157b3696f1c10f3c3c5b4a).

Here is a workaround that works for me: ``` import adlfs import azure.identity.aio abfs = adlfs.AzureBlobFileStorage(account_name=account_name, credential=azure.identity.aio.DefaultAzureCredential()) abfs.ls(container_name + "/" + subpath) ```

I may have time to work on this over my winter break. Sorry I've been slow to respond.

Can confirm the issue and that the PR resolves the issue. Here's a Nix expression which can test it (however, if nixpkgs gets updated, this expression may not work): ```...