Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kaaloo committed Mar 25, 2024
1 parent ae929e3 commit 9d491f6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion site-observable/docs/data/movies.csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@

# Select the columns we want
df = df[
["id", "title", "original_title", "production_year", "production_countries", "genres"]
[
"id",
"title",
"original_title",
"production_year",
"production_countries",
"genres",
]
]

print(df.to_csv(index=False))

0 comments on commit 9d491f6

Please sign in to comment.