Skip to content

Commit

Permalink
#16: bindings: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrepebay committed Oct 21, 2023
1 parent 9d8f56d commit 21a71d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/tv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace vt::tv::bindings::python {

void tv_from_json(const std::string& input_json_str, const std::string& input_yaml_params_str) {
auto j = nlohmann::json::parse(input_json_str, const std::string& input_yaml_params_str);
auto j = nlohmann::json::parse(input_json_str);
fmt::print("JSON: {}\n", j.dump(2));
// Read the json file
// using json = nlohmann::json;
Expand Down

0 comments on commit 21a71d9

Please sign in to comment.