From 958e998991b1cc61dc1dc341b90cd53f4691cd43 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 2 Mar 2020 17:15:05 -0800 Subject: [PATCH] formatting --- jc/parsers/csv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/csv.py b/jc/parsers/csv.py index 1c753954..30abfa35 100644 --- a/jc/parsers/csv.py +++ b/jc/parsers/csv.py @@ -13,7 +13,7 @@ Compatibility: Examples: - $ cat homes.csv + $ cat homes.csv "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 @@ -64,7 +64,7 @@ import csv class info(): version = '1.0' - description = 'csv file parser' + description = 'CSV file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the python standard csv library'