Paul Sanders

Results 34 issues of Paul Sanders

Currently static type checkers such as MyPy complain that this package does not have types. Adding a `py.typed` file lets the type checkers and editors know that types are present.

Every time I close the [easing example](https://github.com/willmcgugan/textual/blob/main/examples/easing.py). I get the following error: ```sh /usr/lib/python3.9/asyncio/base_events.py:681: ResourceWarning: unclosed event loop _warn(f"unclosed event loop {self!r}", ResourceWarning, source=self) ResourceWarning: Enable tracemalloc to get the...

bug

Added missing closing quote

### Bug Description In working through some migrations issues @earmenda and I noticed that when a migration fails `configure_db` will report that the database was initialized, even when migrations fail...

bug

### Bug Description After the restructuring of the project directories pre-commit no longer finds the files to check. Prior to this update I had a separate issue with the pre-commit...

bug

For my projects that use Python and Docker together I have created an autouse session scoped fixture to automatically start the Docker container if it isn't running. The way it...

enhancement

Python 3.6 reached end of life today so it will not receive any more updates, including security updates. Just an FYI in case you want to drop support for it.

good first issue

### Bug Description With Pydantic 1.10.0 The tests are failing. ```console @pytest.mark.unit def test_find_referenced_fides_keys_1(): test_data_category = DataCategory( name="test_dc", fides_key="key_1.test_dc", description="test description", parent_key="key_1", ) expected_referenced_key = {"key_1", "key_1.test_dc", "default_organization"} referenced_keys =...

bug

Closes #1148 ### Code Changes * [x] Removed `__init__.py` from the `src` dir * [x] Removed the global `ignore_missing_imports = true` and moved needed ignores to the override section *...

Closes #1411 ### Code Changes * [x] Changed the nox command from `nox -s dev` to `nox -s dev -- shell` in the README quick start. ### Steps to Confirm...