Skip to content

Commit fea3d46

Browse files
committed
black
1 parent 2edd051 commit fea3d46

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

docs/source/conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,13 @@
6363
html_static_path = ["_static"]
6464

6565
# -- MyST settings -----------------------------------------------------------
66-
myst_enable_extensions = ["deflist", "html_admonition", "html_image", "colon_fence", "dollarmath"]
66+
myst_enable_extensions = [
67+
"deflist",
68+
"html_admonition",
69+
"html_image",
70+
"colon_fence",
71+
"dollarmath",
72+
]
6773

6874
# Sphinx multiversion config
6975
smv_branch_whitelist = r"^(main|dev|yep/.*)$"

scripts/clean_columns.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@
3939

4040
# Add random values between 1 and 4 to the "job_industry" column and "job_occupation" column
4141
households_df["job_industry"] = pd.Series(
42-
np.random.choice([1, 2, 3, 4], size=len(households_df)), index=households_df.index
42+
np.random.choice([1, 2, 3, 4], size=len(households_df)),
43+
index=households_df.index,
4344
)
4445
households_df["job_occupation"] = pd.Series(
45-
np.random.choice([1, 2, 3, 4], size=len(households_df)), index=households_df.index
46+
np.random.choice([1, 2, 3, 4], size=len(households_df)),
47+
index=households_df.index,
4648
)
4749
households_df.to_hdf(args.output, key="households", mode="a")

0 commit comments

Comments
 (0)