Skip to content

Commit

Permalink
removes print with f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-esch committed Dec 14, 2018
1 parent 1d8d81d commit 7faeb51
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cartoframes/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,6 @@ def _df2pg_schema(dataframe, pgcolnames):
a SQL query"""
util_cols = set(('the_geom', 'the_geom_webmercator', 'cartodb_id'))
if set(dataframe.columns).issubset(util_cols):
print(f'subset: {", ".join(dataframe.columns)}')
return ', '.join(dataframe.columns)
schema = ', '.join([
'NULLIF("{col}", \'\')::{t} AS {col}'.format(col=c,
Expand Down

0 comments on commit 7faeb51

Please sign in to comment.