Skip to content

Commit 88a5555

Browse files
authored
Merge pull request #35 from creativecommons/update-python-20230201
Update python modules (and apply new black formatter rules)
2 parents 1e310b0 + 895899d commit 88a5555

3 files changed

Lines changed: 70 additions & 59 deletions

File tree

Pipfile.lock

Lines changed: 67 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analyze/Geomap_and_Model_building.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8063,7 +8063,7 @@
80638063
"tag_map[\"J\"] = wn.ADJ\n",
80648064
"tag_map[\"V\"] = wn.VERB\n",
80658065
"tag_map[\"R\"] = wn.ADV\n",
8066-
"for (index, entry) in zip(merged1_2.index, list(merged1_2[\"description\"])):\n",
8066+
"for index, entry in zip(merged1_2.index, list(merged1_2[\"description\"])):\n",
80678067
" # Declaring Empty List to store the words that follow the rules for this step\n",
80688068
" Final_words = []\n",
80698069
" # Initializing WordNetLemmatizer()\n",
@@ -15570,7 +15570,7 @@
1557015570
"tag_map[\"J\"] = wn.ADJ\n",
1557115571
"tag_map[\"V\"] = wn.VERB\n",
1557215572
"tag_map[\"R\"] = wn.ADV\n",
15573-
"for (index, entry) in zip(otl.index, list(otl[\"Description\"])):\n",
15573+
"for index, entry in zip(otl.index, list(otl[\"Description\"])):\n",
1557415574
" # Declaring Empty List to store the words that follow the rules for this step\n",
1557515575
" Final_words = []\n",
1557615576
" # Initializing WordNetLemmatizer()\n",

visualization/visualization_engineering.ipynb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9638,9 +9638,7 @@
96389638
}
96399639
],
96409640
"source": [
9641-
"google_license_data.iloc[\n",
9642-
" 1:,\n",
9643-
"].head()"
9641+
"google_license_data.iloc[1:,].head()"
96449642
]
96459643
},
96469644
{

0 commit comments

Comments
 (0)