Skip to content

Commit

Permalink
Remove redundant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
shntnu authored Dec 5, 2019
1 parent 6c76109 commit c6d385c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cytominer_database/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ def into(input, output, name, identifier, skip_table_prefix=False):
# deprecated, use inspect.signature() or inspect.getfullargspec()
warnings.simplefilter("ignore", category=DeprecationWarning)

target = output
engine = create_engine(target)
engine = create_engine(output)
con = engine.connect()

df = pd.read_csv(source, index_col=0)
Expand Down

0 comments on commit c6d385c

Please sign in to comment.