From 3f7868e7ce4a458cec63fb50edf0f59dbc92d940 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath <3190405+shwina@users.noreply.github.com> Date: Wed, 8 Nov 2023 10:16:00 -0500 Subject: [PATCH] Update README.md Co-authored-by: Bradley Dice --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 380a1b89bfd..6d82eb7c8be 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ import requests from io import StringIO url = "https://github.com/plotly/datasets/raw/master/tips.csv" -content = requests.get(url).content.decode('utf-8') +content = requests.get(url).content.decode("utf-8") tips_df = cudf.read_csv(StringIO(content)) tips_df["tip_percentage"] = tips_df["tip"] / tips_df["total_bill"] * 100