0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

fix(rpc): added annotations to pass py3.9 tests

This commit is contained in:
wyzula-jan
2024-02-21 10:16:06 +01:00
parent 1c2fb8b972
commit c6bdf0b6a5
3 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,5 @@
# pylint: disable = no-name-in-module,missing-module-docstring
from __future__ import annotations
import time
from typing import Type, Optional

View File

@ -1,6 +1,6 @@
# pylint: disable = no-name-in-module,missing-module-docstring
from __future__ import annotations
# pylint: disable = no-name-in-module,missing-module-docstring
import itertools
import os
import sys

View File

@ -1,3 +1,5 @@
from __future__ import annotations
from collections import defaultdict
from typing import Literal, Optional, Any