-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
f-string cleanup #6068 #6082
f-string cleanup #6068 #6082
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small space to remove and then it looks good once you add the changelog and run pre-commit! Thanks for participating in the Hackathon at Coalesce!
core/dbt/context/providers.py
Outdated
) | ||
|
||
if package is not None and not isinstance(package, str): | ||
raise CompilationException( | ||
f"The package argument to ref() must be a string or None, got " f"{type(package)}" | ||
f"The package argument to ref() must be a string or None, got {type(package)}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has two spaces instead of one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for pointing it out!
You'll want to run |
resolves the f-string part of #6068
Description
Cleaned up multiline f string formatting issue.
Checklist
changie new
to create a changelog entry