From 4293bca416783ac524d927ede773c4bfe811e83c Mon Sep 17 00:00:00 2001 From: universalmind303 Date: Tue, 11 Jun 2024 22:59:27 -0500 Subject: [PATCH] remove console.log --- polars/datatypes/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/polars/datatypes/index.ts b/polars/datatypes/index.ts index 9f41eede6..ab27c6b88 100644 --- a/polars/datatypes/index.ts +++ b/polars/datatypes/index.ts @@ -111,7 +111,6 @@ const POLARS_TYPE_TO_CONSTRUCTOR: Record = { /** @ignore */ export const polarsTypeToConstructor = (dtype: DataType): CallableFunction => { - console.log("variant=", dtype.variant); const ctor = POLARS_TYPE_TO_CONSTRUCTOR[dtype.variant]; if (!ctor) { throw new Error(`Cannot construct Series for type ${dtype.variant}.`);