Skip to content

Commit

Permalink
Put hyphens back
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtemple committed Aug 16, 2019
1 parent fbdc9d5 commit 2cc98d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lkml/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def parse_block(self) -> Optional[dict]:
}"
Output (dictionary):
------
-------
{
"name": "dimension_name",
"label": "Dimension Label",
Expand Down Expand Up @@ -352,7 +352,7 @@ def parse_pair(self) -> Optional[dict]:
label: "Foo"
Output (dictionary):
------
-------
{"label": "Foo"}
"""
Expand Down Expand Up @@ -385,7 +385,7 @@ def parse_key(self) -> Optional[str]:
label:
Output (string):
------
-------
"label"
"""
Expand Down Expand Up @@ -423,7 +423,7 @@ def parse_value(self) -> Optional[str]:
2) "${TABLE}.foo ;;"
Output (string):
------
-------
1) "Foo"
2) "${TABLE}.foo"
Expand Down Expand Up @@ -468,7 +468,7 @@ def parse_list(self) -> Optional[dict]:
"timeframes: [date, week]"
Output (dictionary):
------
-------
{"timeframes": ["date", "week"]}
"""
Expand Down Expand Up @@ -516,7 +516,7 @@ def parse_csv(self) -> Optional[list]:
2) "['foo', 'bar']"
Output (list):
------
-------
1) ["date", "week"]
2) ["foo", "bar"]
Expand Down

0 comments on commit 2cc98d5

Please sign in to comment.