Adam Dangoor

Results 33 issues of Adam Dangoor

I use Shimo instead of Tunnelblick. It took me a couple of minutes to figure this tip out so I thought I would document it.

Hi, thanks for the software. I am a user of pyup and [`scp`](https://pypi.python.org/pypi/scp). pyup shows that scp is not Python 3 compatible, but this is not correct. [The test suite...

question

* Create a Marshmallow schema using [`marshmallow-oneofschema`](https://github.com/marshmallow-code/marshmallow-oneofschema). * Dump a JSON Schema for this new schema. * Ideally the whole nested schema would show, and the "type" options would be...

Consider the following code: `example.py`: ```python from typing import Dict from marshmallow_oneofschema import OneOfSchema class ExampleSchema(OneOfSchema): type_schemas: Dict = {} ``` I would like to type check my code as...

Relevant code: https://github.com/marshmallow-code/marshmallow-oneofschema/blob/a17d5c1493206ebb44664844d36445d5a2a62f5f/marshmallow_oneofschema/one_of_schema.py#L169 Rather than `"Unsupported value: 'foo'"`, I'd like to show the supported values, similar to how Marshmallow's `OneOf` field type shows `Must be one of: FOO`.

See https://www.vagrantup.com/docs/virtualbox/configuration.html#linked-clones - maybe this will make our Vagrant backend more efficient?

Apologies if this is not the right place for this - I was torn between here and StackOverflow. Summary: Code raises an exception on Python 3.10.6 and not Python 3.9.13....

### Motivation and Context Without this, `mypy` in strict mode gives me the error: ``` Call to untyped function "submit" in typed context ``` ### Types of changes - [x]...

C-py

### Motivation and Context Without this, `mypy` in strict mode gives: ``` Module "selenium.webdriver.support.ui" does not explicitly export attribute "Select" [attr-defined] ``` when following the documentation at https://selenium-python.readthedocs.io/navigating.html#filling-in-forms. ### Types...

C-py

### Description I have set the type of `*value` to `AnyKey`. I chose `AnyKey` rather than `str`, despite the method docstring saying that value is "a string", because the method...

C-py