Skip to content

Commit

Permalink
style: fixed syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ammounce committed Oct 11, 2024
1 parent 41d4308 commit 512156f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyscan/drivers/testing/auto_test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def test_driver(device=TestInstrumentDriver(), skip_log=False, expected_attribut

check_properties(device, verbose)
print(
f"\033[92m Property implementation tests passed, instrument: {device.__class__.__name__} looks ready to go. \033[0m")
f"\033[92m Property implementation tests passed, instrument: {device.__class__.__name__}. \033[0m")

check_doc_strings(device)
print("\033[92m Docstring tests passed and looking good. \033[0m")
Expand Down
2 changes: 1 addition & 1 deletion pyscan/drivers/tpi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .tpi1002a import TPI1002A
from .tpi1002a import TPI1002A
1 change: 1 addition & 0 deletions pyscan/general/pyscan_json_decoder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
from .item_attribute import ItemAttribute


class PyscanJSONDecoder(json.JSONDecoder):
Expand Down

0 comments on commit 512156f

Please sign in to comment.