Skip to content
Snippets Groups Projects
Commit 19e2ff80 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Black formatting...

parent e0a3b263
No related branches found
No related tags found
No related merge requests found
Pipeline #87820 passed
...@@ -114,7 +114,9 @@ class DragButton(QPushButton): ...@@ -114,7 +114,9 @@ class DragButton(QPushButton):
path_to_image = os.path.join( path_to_image = os.path.join(
os.path.dirname(__file__), os.path.dirname(__file__),
"operation_icons", "operation_icons",
f"{self.operation_path_name}{'_grey.png' if self.pressed else '.png'}", (
f"{self.operation_path_name}{'_grey.png' if self.pressed else '.png'}"
),
) )
self.setIcon(QIcon(path_to_image)) self.setIcon(QIcon(path_to_image))
self.setIconSize(QSize(55, 55)) self.setIconSize(QSize(55, 55))
......
...@@ -277,7 +277,8 @@ class Min(AbstractOperation): ...@@ -277,7 +277,8 @@ class Min(AbstractOperation):
def evaluate(self, a, b): def evaluate(self, a, b):
if isinstance(a, complex) or isinstance(b, complex): if isinstance(a, complex) or isinstance(b, complex):
raise ValueError( raise ValueError(
"core_operations.Min does not support complex numbers.") "core_operations.Min does not support complex numbers."
)
return a if a < b else b return a if a < b else b
...@@ -316,7 +317,8 @@ class Max(AbstractOperation): ...@@ -316,7 +317,8 @@ class Max(AbstractOperation):
def evaluate(self, a, b): def evaluate(self, a, b):
if isinstance(a, complex) or isinstance(b, complex): if isinstance(a, complex) or isinstance(b, complex):
raise ValueError( raise ValueError(
"core_operations.Max does not support complex numbers.") "core_operations.Max does not support complex numbers."
)
return a if a > b else b return a if a > b else b
......
...@@ -193,6 +193,7 @@ class GraphicsGraphEvent: # PyQt5 ...@@ -193,6 +193,7 @@ class GraphicsGraphEvent: # PyQt5
translate coordinates of the cursor within the graphic element in the translate coordinates of the cursor within the graphic element in the
coordinate system of the parent object. The object can only move coordinate system of the parent object. The object can only move
horizontally in x-axis scale steps.""" horizontally in x-axis scale steps."""
# Qt.DragMoveCursor # Qt.DragMoveCursor
# button = event.button() # button = event.button()
def update_pos(item, delta_x): def update_pos(item, delta_x):
...@@ -245,6 +246,7 @@ class GraphicsGraphEvent: # PyQt5 ...@@ -245,6 +246,7 @@ class GraphicsGraphEvent: # PyQt5
translate coordinates of the cursor within the graphic element in the translate coordinates of the cursor within the graphic element in the
coordinate system of the parent object. The object can only move coordinate system of the parent object. The object can only move
horizontally in x-axis scale steps.""" horizontally in x-axis scale steps."""
# Qt.DragMoveCursor # Qt.DragMoveCursor
# button = event.button() # button = event.button()
def update_pos(item, delta_x): def update_pos(item, delta_x):
......
...@@ -212,8 +212,8 @@ class MainWindow(QMainWindow, Ui_MainWindow): ...@@ -212,8 +212,8 @@ class MainWindow(QMainWindow, Ui_MainWindow):
).load_module() ).load_module()
except Exception as e: except Exception as e:
log.exception( log.exception(
"Exception occurred. Could not load module from file '{}'.\n\n{}" "Exception occurred. Could not load module from file"
.format(abs_path_filename, e) " '{}'.\n\n{}".format(abs_path_filename, e)
) )
return return
......
...@@ -141,7 +141,8 @@ class Signal(AbstractGraphComponent): ...@@ -141,7 +141,8 @@ class Signal(AbstractGraphComponent):
if bits is not None: if bits is not None:
if not isinstance(bits, int): if not isinstance(bits, int):
raise TypeError( raise TypeError(
f"Bits must be an int, not {type(bits)}: {bits!r}") f"Bits must be an int, not {type(bits)}: {bits!r}"
)
if bits < 0: if bits < 0:
raise ValueError("Bits cannot be negative") raise ValueError("Bits cannot be negative")
self.set_param("bits", bits) self.set_param("bits", bits)
...@@ -624,15 +624,14 @@ class SFG(AbstractOperation): ...@@ -624,15 +624,14 @@ class SFG(AbstractOperation):
if output_comp is None: if output_comp is None:
return None return None
if isinstance( if isinstance(output_comp, Output):
output_comp, Output
):
raise TypeError("Source operation cannot be an output operation.") raise TypeError("Source operation cannot be an output operation.")
if len(output_comp.output_signals) != component.input_count: if len(output_comp.output_signals) != component.input_count:
raise TypeError( raise TypeError(
f"Source operation output count ({len(output_comp.output_signals)})" "Source operation output count"
f" does not match input count for component ({component.input_count})." f" ({len(output_comp.output_signals)}) does not match input"
) f" count for component ({component.input_count})."
)
assert len(output_comp.output_signals) == component.output_count, ( assert len(output_comp.output_signals) == component.output_count, (
"Destination operation input count does not match output for" "Destination operation input count does not match output for"
" component." " component."
......
...@@ -250,7 +250,9 @@ class TestEvaluateOutput: ...@@ -250,7 +250,9 @@ class TestEvaluateOutput:
def test_evaluate_output_cycle(self, operation_graph_with_cycle): def test_evaluate_output_cycle(self, operation_graph_with_cycle):
sfg = SFG(outputs=[Output(operation_graph_with_cycle)]) sfg = SFG(outputs=[Output(operation_graph_with_cycle)])
with pytest.raises(RuntimeError, match="Direct feedback loop detected"): with pytest.raises(
RuntimeError, match="Direct feedback loop detected"
):
sfg.evaluate_output(0, []) sfg.evaluate_output(0, [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment