Skip to content

Commit a186da1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dd7c196 commit a186da1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/atomistics/referencedata/wikipedia.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ def get_elastic_properties(chemical_symbol: str) -> dict:
2828
"bulk_modulus",
2929
"shear_modulus",
3030
]
31-
df_lst = pandas.read_html("http://en.wikipedia.org/wiki/Elastic_properties_of_the_elements_(data_page)")
31+
df_lst = pandas.read_html(
32+
"http://en.wikipedia.org/wiki/Elastic_properties_of_the_elements_(data_page)"
33+
)
3234
property_dict = {}
3335
for i, p in enumerate(property_lst):
3436
df_tmp = df_lst[i]

0 commit comments

Comments
 (0)