Format/comment improvements

This commit is contained in:
Richard Bowman 2023-12-13 16:31:18 +00:00
parent 3b2fd29fb0
commit d0eb9fa2c1
6 changed files with 9 additions and 20 deletions

View file

@ -6,12 +6,11 @@ for code that currently lives in clients but needs to persist settings on
the server.
"""
from collections.abc import Mapping
from typing import Any, Mapping, MutableMapping, Optional, Sequence
from typing import Any, MutableMapping, Optional, Sequence
from fastapi import HTTPException
from labthings_fastapi.dependencies.metadata import GetThingStates
from labthings_fastapi.thing import Thing
from labthings_fastapi.decorators import thing_action, thing_property
from pydantic import BaseModel
def recursive_update(old_dict: MutableMapping, update: Mapping):