Skip to content

Commit b093dc0

Browse files
committed
ruff reformat
1 parent d9dbed0 commit b093dc0

58 files changed

Lines changed: 6970 additions & 4975 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

BGlib/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@
55
.. autosummary::
66
:toctree: _autosummary
77
"""
8+
89
from importlib import import_module
910

1011
from .__version__ import version as __version__
1112

12-
__all__ = ['__version__', 'be', 'gmode', 'misc']
13+
__all__ = ["__version__", "be", "gmode", "misc"]
1314

1415

1516
def __getattr__(name):
16-
if name in {'be', 'gmode', 'misc'}:
17-
module = import_module(f'{__name__}.{name}')
17+
if name in {"be", "gmode", "misc"}:
18+
module = import_module(f"{__name__}.{name}")
1819
globals()[name] = module
1920
return module
2021
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")

BGlib/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = '0.0.5'
2-
time = '2024-08-27 10:43:00'
1+
version = "0.0.5"
2+
time = "2024-08-27 10:43:00"

BGlib/be/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
from . import analysis, translators, viz
1717

18-
__all__ = ['analysis', 'translators', 'viz']
18+
__all__ = ["analysis", "translators", "viz"]

BGlib/be/analysis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
from .be_loop_fitter import BELoopFitter
2222
from .be_relax_fit import BERelaxFit
2323

24-
__all__ = ['Fitter', 'BESHOfitter', 'BELoopFitter', 'utils', 'BERelaxFit']
24+
__all__ = ["Fitter", "BESHOfitter", "BELoopFitter", "utils", "BERelaxFit"]

BGlib/be/analysis/be_loop_fitter.py

Lines changed: 464 additions & 369 deletions
Large diffs are not rendered by default.

BGlib/be/analysis/be_relax_fit.py

Lines changed: 212 additions & 144 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)