Skip to content

Commit ddb08a4

Browse files
committed
black
1 parent 5cea03c commit ddb08a4

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

docs/conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,13 @@
323323
# (source start file, target name, title,
324324
# author, documentclass [howto, manual, or own class]).
325325
latex_documents = [
326-
("index", "hydrodata.tex", "hydrodata Documentation", "hydrodata Developers", "manual",)
326+
(
327+
"index",
328+
"hydrodata.tex",
329+
"hydrodata Documentation",
330+
"hydrodata Developers",
331+
"manual",
332+
)
327333
]
328334

329335
# The name of an image file (relative to this directory) to place at the top of

hydrodata/hydrodata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424

2525

2626
def ssebopeta_byloc(
27-
coords: Tuple[float, float], dates: Union[Tuple[str, str], Union[int, List[int]]],
27+
coords: Tuple[float, float],
28+
dates: Union[Tuple[str, str], Union[int, List[int]]],
2829
) -> pd.DataFrame:
2930
"""Daily actual ET for a location from SSEBop database in mm/day.
3031

scripts/generate_pip_deps_from_conda.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ def main(conda_fname, pip_fname, compare=False):
128128
if __name__ == "__main__":
129129
argparser = argparse.ArgumentParser(description="convert (or compare) conda file to pip")
130130
argparser.add_argument(
131-
"--compare", action="store_true", help="compare whether the two files are equivalent",
131+
"--compare",
132+
action="store_true",
133+
help="compare whether the two files are equivalent",
132134
)
133135
args = argparser.parse_args()
134136

0 commit comments

Comments
 (0)