Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matthieu Dartiailh <marul@laposte.net>
  • Loading branch information
bobmcnamara and MatthieuDartiailh authored Jan 29, 2025
1 parent 0da8422 commit 1ee9ea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyvisa_py/gpib.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import ctypes # Used for missing bindings not ideal
from bisect import bisect
from typing import Any, Iterator, List, Optional, Tuple, Type, Union
from typing import Any, Iterator, List, Tuple, Type, Union

from pyvisa import attributes, constants
from pyvisa.constants import ResourceAttribute, StatusCode
Expand All @@ -36,7 +36,7 @@ def __new__( # type: ignore[misc]
resource_manager_session: VISARMSession,
resource_name: str,
parsed=None,
open_timeout: Optional[int] = None,
open_timeout: int | None = None,
) -> Session:
newcls: Type

Expand Down

0 comments on commit 1ee9ea5

Please sign in to comment.