Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add comment
  • Loading branch information
MichelleArk committed Jun 28, 2023
commit 32215979b33601b8ae44f2077abc95943c2ff1b0
5 changes: 5 additions & 0 deletions core/dbt/plugins/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ def inner(*args, **kwargs):


class dbtPlugin:
"""
EXPERIMENTAL: dbtPlugin is the base class for creating plugins.
Its interface is **not** stable and will likely change between dbt-core versions.
"""

def __init__(self, project_name: str):
self.project_name = project_name
self.initialize()
Expand Down