Skip to content

Commit

Permalink
Fix typo arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsokolov committed May 5, 2021
1 parent 76b03a4 commit f8ee0b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dbt/adapters/clickhouse/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@

@dataclass
class ClickhouseCredentials(Credentials):
host: str
host: str = 'localhost'
port: Optional[int] = None
user: Optional[str] = 'default'
database: Optional[str]
database: Optional[str] = None
schema: Optional[str] = 'default'
password: str = ''
cluster: Optional[str] = None

Expand Down

0 comments on commit f8ee0b1

Please sign in to comment.