Skip to content

Commit

Permalink
refactor: add * by default on select
Browse files Browse the repository at this point in the history
  • Loading branch information
TudorAndrei-Pythia committed Oct 4, 2023
1 parent 4b98f1d commit 3daf177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sirqle/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def custom(self, args: str) -> Query:
self.query += args
return self

def select(self, args: str | List[str]) -> Query:
def select(self, args: str | List[str] = "*") -> Query:
"""SELECT statement.
Args:
Expand Down

0 comments on commit 3daf177

Please sign in to comment.