Skip to content

Commit

Permalink
[sourcegen] Rename new generator to 'yaml'
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Aug 16, 2024
1 parent b25de0e commit fcf7757
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@dataclass(frozen=True)
class Config:
"""Provides configuration info for the DoxygenSourceGenerator class"""
"""Provides configuration info for the YamlSourceGenerator class"""

# These we load from the parsed YAML config file
class_crosswalk: Dict[str, str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

logger = logging.getLogger()

class DoxygenSourceGenerator(SourceGenerator):
class YamlSourceGenerator(SourceGenerator):
"""The SourceGenerator for referencing CLib functions to doxygen information."""

def __init__(self, out_dir: str, config: dict):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is part of Cantera. See License.txt in the top-level directory or
# at https://cantera.org/license.txt for license and copyright information.

from ._DoxygenSourceGenerator import DoxygenSourceGenerator
from ._YamlSourceGenerator import YamlSourceGenerator

0 comments on commit fcf7757

Please sign in to comment.