Skip to content

Commit

Permalink
Just pass kwargs through
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jun 18, 2019
1 parent 5d8ec82 commit c9662ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ibis/file/client.py
Expand Up @@ -35,8 +35,7 @@ def database(self, name=None, path=None):

def execute(self, expr, params=None, **kwargs): # noqa
assert isinstance(expr, ir.Expr)
scope = kwargs.pop('scope', {})
return execute_and_reset(expr, params=params, scope=scope, **kwargs)
return execute_and_reset(expr, params=params, **kwargs)

def list_tables(self, path=None):
raise NotImplementedError
Expand Down

0 comments on commit c9662ac

Please sign in to comment.