Skip to content

Commit c9ab899

Browse files
committed
correct typo
1 parent adaa2e0 commit c9ab899

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

example_queries/example_queries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python_quaries:
1+
python_queries:
22
all_class_names:
33
"
44
(

tree_hugger/core/assets/queries/queries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python_quaries:
1+
python_queries:
22
all_class_names:
33
"
44
(

tree_hugger/core/python_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class PythonParser(BaseParser):
2828
"""
2929

3030
def __init__(self, library_loc: str=None, query_file_path: str=None):
31-
super(PythonParser, self).__init__('python', 'python_quaries', library_loc, query_file_path)
31+
super(PythonParser, self).__init__('python', 'python_queries', library_loc, query_file_path)
3232

3333
def _strip_py_doc_string(self, dt: str, strip_quotes: bool) -> str:
3434
try:
@@ -232,4 +232,4 @@ def get_all_class_docstrings(self, strip_quotes: bool=False) -> Dict[str, str]:
232232
if strip_quotes:
233233
class_docstr = self._strip_py_doc_string(class_docstr, strip_quotes)
234234
ret_struct[class_name] = class_docstr
235-
return ret_struct
235+
return ret_struct

0 commit comments

Comments
 (0)