Skip to content

Commit 49a643b

Browse files
authored
Merge pull request cornellius-gp#86 from cornellius-gp/saitcakmak-patch-1
Suppress linter warnings on import from non-existent file
2 parents 6eff871 + daed81b commit 49a643b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linear_operator/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
# Read version number as written by setuptools_scm
1919
try:
20-
from linear_operator.version import version as __version__
20+
from linear_operator.version import version as __version__ # @manual
2121
except Exception: # pragma: no cover
22-
__version__ = "Unknown" # pragma: no cover
22+
__version__ = "Unknown"
2323

2424
__all__ = [
2525
# Base class

0 commit comments

Comments
 (0)