Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
akurdyukov committed Jan 23, 2024
1 parent e6d559c commit 68a69e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion target_clickhouse/engine_class.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from enum import Enum
from typing import List, Optional
from string import Template
from typing import List, Optional

from clickhouse_sqlalchemy import engines
from sqlalchemy import func
Expand Down
10 changes: 6 additions & 4 deletions target_clickhouse/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,12 @@ class TargetClickhouse(SQLTarget):
"table_path",
th.StringType,
required=False,
description="The table path for replicated tables. This is required when using "
"any of the replication engines. Check out the "
"[documentation](https://clickhouse.com/docs/en/engines/table-engines/mergetree-family/replication#replicatedmergetree-parameters) "
"for more information. Use `$table_name` to substitute the table name."
description="The table path for replicated tables. This is required when "
"using any of the replication engines. Check out the "
"[documentation](https://clickhouse.com/docs/en/engines/table-engines/"
"mergetree-family/replication#replicatedmergetree-parameters) "
"for more information. Use `$table_name` to substitute the "
"table name.",
),
th.Property(
"replica_name",
Expand Down

0 comments on commit 68a69e1

Please sign in to comment.