Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ cython_debug/
# 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/

# views folder
views
Expand All @@ -169,3 +169,5 @@ result.json

#vscode
.vscode/

.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This command-line interface (CLI) tool helps you generate LookML view files from
You can install the library using:

```bash
pip install git+ssh://git@github.com:devoteamgcloud/dataform2looker.git --force-reinstall
pip install git+ssh://git@github.com/devoteamgcloud/dataform2looker.git --force-reinstall
```

OR
Expand Down
2 changes: 1 addition & 1 deletion dataform2looker/database_mappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(
"name": self.name,
"type": self.field_type,
"description": self.description,
"sql": f"{{TABLE}}.{self.name}",
"sql": f"${{TABLE}}.{self.name}",
}
if self.dimension_type == "time_dimension_group":
self.column_dictionary["datatype"] = self.data_type
Expand Down
Loading