Skip to content

Commit 3b6d538

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

File tree

9 files changed

+2
-9
lines changed

9 files changed

+2
-9
lines changed

yaqc_cmds/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"""Unified software for controlling hardware and collecting data in the Wright group."""
22

3-
43
from .__version__ import *
54
from .project import *

yaqc_cmds/__version__.py

Lines changed: 0 additions & 1 deletion
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_cmds/hardware/hardware.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Parent hardware class and associated.
33
"""
4+
45
__all__ = ["Driver", "GUI", "Hardware", "import_hardwares"]
56

67

yaqc_cmds/project/file_dialog_handler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
QFileDialog objects can only be run in the main thread.
33
"""
44

5-
65
### imports ###################################################################
76

87

yaqc_cmds/project/kit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
a collection of small, general purpose objects and methods
33
"""
44

5-
65
### import ####################################################################
76

87

yaqc_cmds/sensors/_sensors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Sensors."""
22

3-
43
import appdirs
54
import pathlib
65
import time

yaqc_cmds/somatic/_wt5.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""wt5 data file functions"""
22

3-
43
import time
54
import threading
65

yaqc_cmds/somatic/acquisition.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Acquisition infrastructure shared by all modules.
33
"""
44

5-
65
### import ####################################################################
76

87

yaqc_cmds/somatic/modules/abstract_tuning.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def process(self, scan_folder):
3232
reference_image=str(pathlib.Path(scan_folder) / self.reference_image),
3333
)
3434

35-
def _process(self, data, curve, channel, gtol, ltol, level, scan_folder, config):
36-
...
35+
def _process(self, data, curve, channel, gtol, ltol, level, scan_folder, config): ...
3736

3837
@property
3938
def config_dictionary(self):

0 commit comments

Comments
 (0)