Skip to content

Commit

Permalink
Improve docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jochemvandooren committed May 2, 2024
1 parent 933207d commit dc58c5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dbt_score/config_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module is responsible for parsing the config file."""
"""This module is responsible for parsing configuration."""

import configparser
import json
Expand All @@ -13,7 +13,7 @@

@dataclass
class RuleConfig:
"""Rule config."""
"""Configuration for a rule."""

severity: int | None = None
description: str | None = None
Expand All @@ -31,7 +31,7 @@ def from_dict(rule_config: dict[str, Any]) -> "RuleConfig":


class DbtScoreConfig:
"""Dbt score config."""
"""Configuration for dbt-score."""

_main_section = "tool.dbt-score"
_options: ClassVar[list[str]] = ["rule_namespaces", "disabled_rules"]
Expand Down

0 comments on commit dc58c5a

Please sign in to comment.