Skip to content

Commit

Permalink
Added some # pragma: no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Oct 4, 2023
1 parent 96633fd commit ffb7e22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion guidata/configtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

from guidata.utils.misc import decode_fs_string, get_module_path

if TYPE_CHECKING:
if TYPE_CHECKING: # pragma: no cover
from qtpy import QtCore as QC
from qtpy import QtGui as QG
from qtpy import QtWidgets as QW
Expand Down
2 changes: 1 addition & 1 deletion guidata/qthelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
from guidata.external import darkdetect
from guidata.utils.misc import to_string

if TYPE_CHECKING:
if TYPE_CHECKING: # pragma: no cover
from collections.abc import Callable


Expand Down
2 changes: 1 addition & 1 deletion guidata/widgets/objecteditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
DataFrameEditor = FakeObject()


if TYPE_CHECKING:
if TYPE_CHECKING: # pragma: no cover
import numpy as np
from qtpy import QtWidgets as QW

Expand Down

0 comments on commit ffb7e22

Please sign in to comment.