From 87fca1dba295f94fda56dacb16b19c7b785cdc62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 1 Feb 2019 19:07:55 +0100 Subject: [PATCH] Table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a79cf6e..202a9cf 100644 --- a/README.md +++ b/README.md @@ -1513,7 +1513,7 @@ Table # $ pip3 install tabulate import csv from tabulate import tabulate -with open(, encoding='utf-8', newline='') as file: +with open(, encoding='utf-8') as file: lines = csv.reader(file, delimiter=';') headers = [header.title() for header in next(lines)] table = tabulate(lines, headers)