Skip to content

Commit 856608c

Browse files
committed
More linting
1 parent 7c5ece9 commit 856608c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/fastcs/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
__all__ = ["main"]
99

10+
1011
def main(args: Sequence[str] | None = None) -> None:
1112
"""Argument parser for the CLI."""
1213
parser = ArgumentParser()

src/fastcs/backends/epics/gui.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class EpicsGUIFormat(Enum):
3838
bob = ".bob"
3939
edl = ".edl"
4040

41+
4142
@dataclass
4243
class EpicsGUIOptions:
4344
output_path: Path = Path.cwd() / "output.bob"

src/fastcs/main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55

66
class FastCS:
7-
8-
def __init__(self, controller: Controller, options: EpicsOptions|TangoOptions):
7+
def __init__(self, controller: Controller, options: EpicsOptions | TangoOptions):
98
match options:
109
case EpicsOptions():
1110
self.backend = EpicsBackend(controller, options)
@@ -20,4 +19,3 @@ def create_gui(self) -> None:
2019

2120
def run(self) -> None:
2221
self.backend.run()
23-

0 commit comments

Comments
 (0)