We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bc605a commit 0ceef00Copy full SHA for 0ceef00
hbase/sesion6.ipynb
@@ -1,6 +1,5 @@
1
{
2
-
3
- "cells": [
+ "cells": [
4
5
"cell_type": "markdown",
6
"metadata": {
@@ -364,8 +363,8 @@
364
363
" reader = csv.reader(f, dialect='excel')\n",
365
"\n",
366
" # Se leen las columnas. Sus nombres se usarán para crear las diferentes columnas en la familia\n",
367
- " columns: list[str] = next(reader)\n",
368
- " columns: list[bytes] = [column_family.encode() + b':' + c.encode() for c in columns]\n",
+ " columns_str: list[str] = next(reader)\n",
+ " columns: list[bytes] = [column_family.encode() + b':' + c.encode() for c in columns_str]\n",
369
370
" with table.batch(batch_size=500) as b:\n",
371
" for row in reader:\n",
0 commit comments