Skip to content

Commit

Permalink
Add new lines to EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhuishi-convect committed Sep 11, 2023
1 parent 1751f64 commit d3026d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mindsdb_sql/parser/ast/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ def __repr__(self):
sql = self.to_string().replace('\n', ' ')
if len(sql) > 500:
sql = sql[:500] + '...'
return f'{self.__class__.__name__}({sql})'
return f'{self.__class__.__name__}({sql})'
2 changes: 1 addition & 1 deletion tests/test_planner/test_select_from_predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,4 +456,4 @@ def test_using_integration_in_subselect(self):
)
]

assert plan.steps == expected_plan
assert plan.steps == expected_plan

0 comments on commit d3026d5

Please sign in to comment.