Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Jun 12, 2024
1 parent 78d6633 commit 4293bca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion polars/datatypes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ const POLARS_TYPE_TO_CONSTRUCTOR: Record<string, any> = {

/** @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}.`);
Expand Down

0 comments on commit 4293bca

Please sign in to comment.