From c7cd0dfc9277ae3c40c9fc0b9f9201ab0b594363 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:09:42 +0000 Subject: [PATCH 1/2] chore(deps): update actions/cache action to v4 --- .github/workflows/pythonapp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index e6a40ab..26d782a 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -19,7 +19,7 @@ jobs: python-version: 3.8 - name: Cache poetry virtualenv id: cache-poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.local/share/virtualenvs key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} From 7b584b1825f872ca2570e41e7fd85256b85fd21c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:09:54 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- mause_rpc/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mause_rpc/server.py b/mause_rpc/server.py index 22d2ba6..0e844ff 100644 --- a/mause_rpc/server.py +++ b/mause_rpc/server.py @@ -6,7 +6,7 @@ import socket from dataclasses import dataclass, field from functools import partial -from typing import Callable, Dict, Optional, TypeVar, overload, NoReturn +from typing import Callable, Dict, NoReturn, Optional, TypeVar, overload import dill import pika