-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformatting code for flake8 config (#1)
Co-authored-by: Ryan Ly <[email protected]>
- Loading branch information
Showing
24 changed files
with
1,048 additions
and
636 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,15 @@ | |
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
import os | ||
import re | ||
import sys | ||
from datetime import date | ||
from linkml_arrays import __version__ | ||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = 'linkml-arrays' | ||
project = "linkml-arrays" | ||
copyright = f"{date.today().year}, Ryan Ly <[email protected]>" | ||
author = 'Ryan Ly <[email protected]>' | ||
author = "Ryan Ly <[email protected]>" | ||
release = __version__ | ||
|
||
# -- General configuration --------------------------------------------------- | ||
|
@@ -25,7 +24,7 @@ | |
"sphinx_rtd_theme", | ||
"sphinx_click", | ||
"sphinx_autodoc_typehints", | ||
"myst_parser" | ||
"myst_parser", | ||
] | ||
|
||
# generate autosummary pages | ||
|
@@ -46,13 +45,13 @@ | |
# This pattern also affects html_static_path and html_extra_path. | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
templates_path = ['_templates'] | ||
templates_path = ["_templates"] | ||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_theme = 'sphinx_rtd_theme' | ||
html_static_path = ['_static'] | ||
html_theme = "sphinx_rtd_theme" | ||
html_static_path = ["_static"] | ||
|
||
# The name of an image file (relative to this directory) to place at the top | ||
# of the sidebar. | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""linkml-arrays package.""" | ||
|
||
import importlib_metadata | ||
|
||
try: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
"""Dumper classes for linkml-arrays.""" | ||
from .yaml_numpy_dumper import YamlNumpyDumper | ||
from .yaml_hdf5_dumper import YamlHdf5Dumper | ||
|
||
from .hdf5_dumper import Hdf5Dumper | ||
from .zarr_directory_store_dumper import ZarrDirectoryStoreDumper | ||
from .yaml_hdf5_dumper import YamlHdf5Dumper | ||
from .yaml_numpy_dumper import YamlNumpyDumper | ||
from .zarr_directory_store_dumper import ZarrDirectoryStoreDumper | ||
|
||
__all__ = [ | ||
"Hdf5Dumper", | ||
"YamlHdf5Dumper", | ||
"YamlNumpyDumper", | ||
"ZarrDirectoryStoreDumper", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
"""Dumper classes for linkml-arrays.""" | ||
from .yaml_numpy_loader import YamlNumpyLoader | ||
from .yaml_hdf5_loader import YamlHdf5Loader | ||
|
||
from .hdf5_loader import Hdf5Loader | ||
from .zarr_directory_store_loader import ZarrDirectoryStoreLoader | ||
from .yaml_hdf5_loader import YamlHdf5Loader | ||
from .yaml_numpy_loader import YamlNumpyLoader | ||
from .zarr_directory_store_loader import ZarrDirectoryStoreLoader | ||
|
||
__all__ = [ | ||
"Hdf5Loader", | ||
"YamlHdf5Loader", | ||
"YamlNumpyLoader", | ||
"ZarrDirectoryStoreLoader", | ||
] |
Oops, something went wrong.