Skip to content

Commit

Permalink
solved regex issue for IR performances
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirscher committed Mar 3, 2023
1 parent e1da74b commit 74a87f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scraping.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@
"metadata": {},
"outputs": [],
"source": [
"re_perf = re.compile(\"[A-Z]{1}[1-8](?=<)|I[A,B](?=<)\")"
"re_perf = re.compile(\"[A-Z]{1,2}[1-8](?=<)|I[A,B](?=<)\")"
]
},
{
Expand Down Expand Up @@ -1472,7 +1472,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -1486,7 +1486,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.8"
"version": "3.10.8"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 74a87f0

Please sign in to comment.