Skip to content

Commit

Permalink
Merge pull request #16 from jeertmans/coverage
Browse files Browse the repository at this point in the history
chore(ci): ignore coverage for abstract
  • Loading branch information
jeertmans authored Jul 26, 2023
2 parents b17fee4 + f03b9ce commit 9874e1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions differt2d/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
from abc import abstractmethod
from typing import TYPE_CHECKING, Any, List, Protocol, Union

if TYPE_CHECKING:
if TYPE_CHECKING: # pragma: no cover
from jax import Array
from matplotlib.artist import Artist
from matplotlib.axes import Axes


class Plottable(Protocol):
class Plottable(Protocol): # pragma: no cover
"""
Protocol for any object that can be plotted using matplotlib.
"""
Expand Down Expand Up @@ -47,7 +47,7 @@ def bounding_box(self) -> Array:
pass


class Interactable(Protocol):
class Interactable(Protocol): # pragma: no cover
"""
Protocol for any object that a ray path can interact with.
"""
Expand Down

0 comments on commit 9874e1e

Please sign in to comment.