From d9b4db68d063d031201f1ab7cf7de0b1813581a0 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Fri, 24 Jan 2025 14:25:24 -0500 Subject: [PATCH] fix: update dtype of `year` col in `gtcars` dataset (#586) --- great_tables/data/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/great_tables/data/__init__.py b/great_tables/data/__init__.py index e96f18112..9fd74688a 100644 --- a/great_tables/data/__init__.py +++ b/great_tables/data/__init__.py @@ -32,7 +32,7 @@ _gtcars_dtype = { "mfr": "object", "model": "object", - "year": "float64", + "year": "int64", "trim": "object", "bdy_style": "object", "hp": "float64",