Update books2.py
Browse files
books2.py
CHANGED
|
@@ -92,12 +92,12 @@ class books2(datasets.GeneratorBasedBuilder):
|
|
| 92 |
"FirstAuthor": row["FirstAuthor"],
|
| 93 |
"SecondAuthor": row["SecondAuthor"],
|
| 94 |
"ThirdAuthor": row["ThirdAuthor"],
|
| 95 |
-
"ISBN": row["ISBN"],
|
| 96 |
"ISBN13": row["ISBN13"],
|
| 97 |
"PageCount": row["PageCount"],
|
| 98 |
"PublishDate": row["PublishDate"],
|
| 99 |
"Publisher": row["Publisher"],
|
| 100 |
"Title": row["Title"],
|
|
|
|
| 101 |
}
|
| 102 |
else:
|
| 103 |
yield i, {
|
|
|
|
| 92 |
"FirstAuthor": row["FirstAuthor"],
|
| 93 |
"SecondAuthor": row["SecondAuthor"],
|
| 94 |
"ThirdAuthor": row["ThirdAuthor"],
|
|
|
|
| 95 |
"ISBN13": row["ISBN13"],
|
| 96 |
"PageCount": row["PageCount"],
|
| 97 |
"PublishDate": row["PublishDate"],
|
| 98 |
"Publisher": row["Publisher"],
|
| 99 |
"Title": row["Title"],
|
| 100 |
+
"ISBN": row["ISBN"],
|
| 101 |
}
|
| 102 |
else:
|
| 103 |
yield i, {
|