Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Schrock committed May 28, 2018
1 parent 1f793ab commit c2c60d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dagster/core/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
input_arg_dicts: {string : { string: string } }
A dictionary of dictionarys. The first level is indexed by input *name*. Put an entry for each
input you want to specify. Each one of inputs in turn has an argumect dictionary, which is just
A dictionary of dictionaries. The first level is indexed by input *name*. Put an entry for each
input you want to specify. Each one of inputs in turn has an argument dictionary, which is just
a set of key value pairs, represented by a bare python dictionary:
So for example a solid that takes two csv inputs would have the input_arg_dicts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,6 @@ def input_fn(arg_dict):

def test_templated_sql_solid_pipeline():
context = in_mem_context()
foo = 'kdd' + \
'kdkd'

sum_sql_template = '''CREATE TABLE {{sum_table.name}} AS
SELECT num1, num2, num1 + num2 as sum FROM num_table'''
Expand Down

0 comments on commit c2c60d6

Please sign in to comment.