We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d38535c commit 9d640ccCopy full SHA for 9d640cc
doc/source/whatsnew/v0.21.0.txt
@@ -164,6 +164,8 @@ I/O
164
165
- Bug in :func:`read_stata` where value labels could not be read when using an iterator (:issue:`16923`)
166
167
+- Bug in :func:`read_html` importcheck fails when run concurrently (:issue:`16928`)
168
+
169
Plotting
170
^^^^^^^^
171
- Bug in plotting methods using ``secondary_y`` and ``fontsize`` not setting secondary axis font size (:issue:`12565`)
pandas/io/html.py
@@ -37,8 +37,6 @@ def _importers():
37
if _IMPORTS:
38
return
39
40
- _IMPORTS = True
41
-
42
global _HAS_BS4, _HAS_LXML, _HAS_HTML5LIB
43
44
try:
@@ -59,6 +57,8 @@ def _importers():
59
57
except ImportError:
60
58
pass
61
+ _IMPORTS = True
62
63
#############
64
# READ HTML #
0 commit comments