Prasanth Somasundar
Prasanth Somasundar
Lock files are designed to be submitted to source control for consistent builds. Ignoring yarn.lock conflicts with its intended purpose: https://classic.yarnpkg.com/en/docs/yarn-lock/#toc-check-into-source-control.
I'm not sure if all DBs allow this, but at least in postgres you can alias the table. The specific part of [the spec](https://www.postgresql.org/docs/current/sql-insert.html) that I'm referencing is this: >...
Currently, the `Matcher` class has a type arg `T` as it should, but `Matcher`s are currently invariant with respect to `T`. However, I think it's quite clear that the following...
**Describe the bug** decoding_fns never trigger **To Reproduce** ```python #!/usr/bin/env python3 from functools import wraps from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey from cryptography.hazmat.primitives.serialization import load_pem_private_key import simple_parsing from dataclasses import dataclass from...
**Describe the bug** The raw type sometimes gets passed into it's own constructor. This is fine for many classes which automatically create a new instance with the same values, but...
Is there a good way to share flags between commands? It's a bit of a pain to rewrite them over and over. For example, I'd like to share an API...
Let's say we have the following directory contents: ``` foo/ __init__.py _bar.py ``` The contents look like so: ```python # __init__.py from ._bar import baz __all__ = ["baz"] ``` If...