Skip to content

Commit

Permalink
test pragma no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
atl1502 committed Apr 24, 2024
1 parent a2b110c commit 91ae7b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dataprofiler/profilers/profile_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
logger = dp_logging.get_child_logger(__name__)


class StructuredColProfiler:
class StructuredColProfiler: # pragma: no cover
"""For profiling structured data columns."""

def __init__(
Expand Down Expand Up @@ -1616,7 +1616,7 @@ def save(self, filepath: str = None, save_method: str = "pickle") -> None:
raise ValueError('save_method must be "json" or "pickle".')


class StructuredProfiler(BaseProfiler):
class StructuredProfiler(BaseProfiler): # pragma: no cover
"""For profiling structured data."""

_default_labeler_type = "structured"
Expand Down

0 comments on commit 91ae7b8

Please sign in to comment.