From 4be58ca376687f3e1d4e9f6f4852628c93046e9f Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 13 Jan 2023 15:17:24 -0300 Subject: [PATCH] fix: use `datetime` type for fetched_at (#176) --- tap_github/repository_streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_github/repository_streams.py b/tap_github/repository_streams.py index 1051904b..f0b9db75 100644 --- a/tap_github/repository_streams.py +++ b/tap_github/repository_streams.py @@ -2032,7 +2032,7 @@ def http_headers(self) -> dict: th.Property("open_prs", th.IntegerType), th.Property("dependents", th.IntegerType), th.Property("contributors", th.IntegerType), - th.Property("fetched_at", th.DateType), + th.Property("fetched_at", th.DateTimeType), ).to_dict()