Skip to content

Commit

Permalink
Merge pull request #48 from biqute/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
rodolfocarobene authored Jan 30, 2024
2 parents b6a50cf + f1d41d6 commit 4a33f3f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-yaml
- id: debug-statements
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
- repo: https://github.com/pycqa/isort
Expand Down
1 change: 1 addition & 0 deletions src/qtics/instruments/network/NA_N9916A.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
The code for query_data() was partially taken from https://github.com/morgan-at-keysight/socketscpi
"""

import time
from abc import ABC, abstractmethod
from typing import Tuple
Expand Down
1 change: 1 addition & 0 deletions src/qtics/instruments/network/RS_SMA100B.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. module:: RS_SMA100B.py
.. moduleauthor:: Marco Gobbo <marco.gobbo@mib.infn.it>
"""

from qtics.network_inst import NetworkInst


Expand Down
1 change: 1 addition & 0 deletions src/qtics/instruments/serial/synth_FSL0010.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. module:: synth_FSL0010.py
.. moduleauthor:: Pietro Campana <campana.pietro@campus.unimib.it>
"""

from typing import Literal

import serial
Expand Down
1 change: 1 addition & 0 deletions src/qtics/network_inst.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
The code was partially taken from https://github.com/morgan-at-keysight/socketscpi
"""

import ipaddress
import socket
import time
Expand Down
1 change: 1 addition & 0 deletions src/qtics/serial_inst.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Base instrument for serial connections."""

import time
from typing import Literal

Expand Down
1 change: 1 addition & 0 deletions tests/test_network_inst.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test network instrument base class."""

import socket

import pytest
Expand Down

0 comments on commit 4a33f3f

Please sign in to comment.