Liam Damewood

Results 3 issues of Liam Damewood

unpinned_maven_provided uses an x86_64 executable on mac M1. Without rosetta2 installed, the command fails. ``` $ bazel run @unpinned_maven_provided//:pin .../bazel-out/darwin_arm64-fastbuild/bin/external/unpinned_maven_provided/pin: line 10: ../unpinned_maven_provided/jq: Bad CPU type in executable ```

The following file ``` # -*- coding: utf-8 -*- """Compatibility layer for optional functionality.""" def _tqdm(it, *_args, **_kwargs): # noqa return it try: from tqdm.auto import tqdm except ImportError: tqdm...

```python class MyApplicationException(Exception): """My custom exception.""" def foo(): raise MyApplicationException() ``` is minified into ```python class MyApplicationException(Exception): def foo(): raise MyApplicationException() ``` I can work around this using `pass`, but...