Skip to content

Commit

Permalink
Touch up init, fix missing adapter errors (#3483)
Browse files Browse the repository at this point in the history
* Some love to init

* Update changelog

automatic commit by git-black, original commits:
  41610b8
  • Loading branch information
jtcohen6 authored and iknox-fa committed Feb 8, 2022
1 parent a66c5c2 commit 0faea1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dbt/task/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from dbt.task.base import BaseTask, move_to_nearest_project_dir

DOCS_URL = "https://docs.getdbt.com/docs/configure-your-profile"
SLACK_URL = 'https://community.getdbt.com/'
SLACK_URL = "https://community.getdbt.com/"

# This file is not needed for the starter project but exists for finding the resource path
IGNORE_FILES = ["__init__.py", "__pycache__"]
Expand Down Expand Up @@ -124,7 +124,7 @@ def get_addendum(self, project_name: str, profiles_path: str) -> str:
project_name=project_name,
profiles_path=profiles_path,
docs_url=DOCS_URL,
slack_url=SLACK_URL
slack_url=SLACK_URL,
)

def generate_target_from_input(
Expand Down

0 comments on commit 0faea1b

Please sign in to comment.