Skip to content

Commit

Permalink
Change theme to rtd
Browse files Browse the repository at this point in the history
  • Loading branch information
Yann21 committed Aug 18, 2023
1 parent 223df57 commit 7f9e7ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'classic'
html_theme = 'sphinx-rtd-theme'

# Theme options are theme-specific and customize the look and feel of a
# theme further. For a list of options available for each theme, see the
Expand Down
2 changes: 1 addition & 1 deletion yann_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def multiprocess_apply(func, args, n_jobs: int = 8) -> List[Any]:
return list(tqdm.tqdm(pool.imap(func, args), total=len(args)))


def list_set(xs: List) -> List:
def list_set(xs: List[O]) -> List[O]:
"""
>>> list_set([1, 2, 3, 1, 2, 3])
[1, 2, 3]
Expand Down

0 comments on commit 7f9e7ad

Please sign in to comment.