Skip to content

Commit

Permalink
Merge branch 'main' into config/release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Jan 18, 2024
2 parents e3cd5b2 + e4c2f95 commit 3dd6d75
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,4 @@ dmypy.json
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/
6 changes: 6 additions & 0 deletions dbt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# N.B.
# This will add to the package’s __path__ all subdirectories of directories on sys.path named after the package which effectively combines both modules into a single namespace (dbt.adapters)

from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)
Empty file added dbt/adapters/py.typed
Empty file.
3 changes: 3 additions & 0 deletions dbt/include/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)

0 comments on commit 3dd6d75

Please sign in to comment.