Skip to content

Commit

Permalink
version_col = kwargs.pop(version_col, None)
Browse files Browse the repository at this point in the history
  • Loading branch information
Артемьев Михаил committed Feb 10, 2020
1 parent 3bb7c3e commit 59e3fb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clickhouse_sqlalchemy/engines.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,9 @@ def get_parameters(self):
class ReplacingMergeTree(MergeTree):
def __init__(self,
*args,
version_col=None,
**kwargs):

version_col = kwargs.pop('version_col', None)
super(ReplacingMergeTree, self).__init__(
*args, **kwargs
)
Expand Down

0 comments on commit 59e3fb8

Please sign in to comment.