Skip to content

Commit

Permalink
Merge pull request #86 from cornellius-gp/saitcakmak-patch-1
Browse files Browse the repository at this point in the history
Suppress linter warnings on import from non-existent file
  • Loading branch information
Balandat authored Nov 20, 2023
2 parents 6eff871 + daed81b commit 49a643b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linear_operator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

# Read version number as written by setuptools_scm
try:
from linear_operator.version import version as __version__
from linear_operator.version import version as __version__ # @manual
except Exception: # pragma: no cover
__version__ = "Unknown" # pragma: no cover
__version__ = "Unknown"

__all__ = [
# Base class
Expand Down

0 comments on commit 49a643b

Please sign in to comment.