Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
#950 fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dperl-dls committed Nov 21, 2023
1 parent 1ff94c6 commit 2e50c4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import types
from unittest.mock import MagicMock, call, patch

import bluesky.plan_stubs as bps
import bluesky.preprocessors as bpp
import numpy as np
import pytest
Expand Down
2 changes: 1 addition & 1 deletion src/hyperion/parameters/tests/test_external_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_parse_exception_causes_warning(mock_logger):

def test_parse_list():
test_data = [([1, 2, 3], "[1, 2, 3]"), ([1, True, 3], "[1, Yes, 3]")]
for (expected, input) in test_data:
for expected, input in test_data:
actual = GDABeamlineParameters.parse_value(input)
assert expected == actual, f"Actual:{actual}, expected: {expected}\n"

Expand Down

0 comments on commit 2e50c4f

Please sign in to comment.