Skip to content

Commit

Permalink
Merge pull request #19 from mistermichaelll/QUICKFIX-breaking-change
Browse files Browse the repository at this point in the history
QUICKFIX: replace references
  • Loading branch information
mistermichaelll authored Jan 11, 2024
2 parents 8f34465 + aee4f56 commit 148368d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datasets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function create_dataset(df; name::String = "", description::String = "")
schema = create_dataset_schema(df, name, description)
pushed_schema = push_schema_to_domo(schema) |> parse_HTTP_response

data = create_csv_structure(df)
data = dataframe_to_csv(df)

response = PUT_data(data, pushed_schema["id"], access_token)

Expand All @@ -42,7 +42,7 @@ function replace_dataset(dataset_id::String, df)

access_token = domo["access_token"]

data = create_csv_structure(df)
data = dataframe_to_csv(df)

response = PUT_data(data, dataset_id, access_token)

Expand Down

0 comments on commit 148368d

Please sign in to comment.