Skip to content

Commit 6a68690

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 68f1fd0 commit 6a68690

File tree

9 files changed

+5
-11
lines changed

9 files changed

+5
-11
lines changed

yaqc/yaqc/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Generic yaq client."""
22

3-
43
from .__version__ import *
54
from ._client import *
65
from . import _avro_numpy

yaqc/yaqc/__version__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Define version."""
22

3-
43
import pathlib
54
import subprocess
65

yaqc/yaqc/_properties.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Class representing single property, see YEP-111."""
22

3-
43
Getter = object()
54

65

yaqd-core/yaqd_core/__version__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Define version."""
22

3-
43
import pathlib
54
import subprocess
65

yaqd-core/yaqd_core/_has_mapping.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def __init__(
1414
self, name: str, config: Dict[str, Any], config_filepath: pathlib.Path
1515
):
1616
super().__init__(name, config, config_filepath)
17-
self.__mappings: Dict[
18-
str, Any
19-
] = dict() # don't interact directly, use property
17+
self.__mappings: Dict[str, Any] = (
18+
dict()
19+
) # don't interact directly, use property
2020
self._mapping_id: int = 0
2121
self._channel_mappings: Dict[str, List[str]] = dict()
2222
self._mapping_units: Dict[str, str] = dict()

yaqd-core/yaqd_core/_has_turret.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ def set_turret(self, identifier: str):
1212
self._busy = True
1313

1414
@abstractmethod
15-
def get_turret_options(self):
16-
...
15+
def get_turret_options(self): ...
1716

1817
def get_turret(self):
1918
return self._state["turret"]

yaqd-fakes/yaqd_fakes/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
""" fake yaq daemons, for testing purposes
22
"""
3+
34
from .__version__ import *

yaqd-fakes/yaqd_fakes/__version__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Define version."""
22

3-
43
import pathlib
54
import subprocess
65

yaqd-fakes/yaqd_fakes/_signal_generators.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Generators for fake sensor signal generation."""
22

3-
43
import random
54

65

0 commit comments

Comments
 (0)