Skip to content

Commit cc0daa3

Browse files
committed
chore: precommit fixes
1 parent c655d3a commit cc0daa3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/diffpy/cmi/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
# See LICENSE.rst for license information.
1313
#
1414
##############################################################################
15-
"""Complex modeling infrastructure: a modulare framework for multi-modal modeling of scientific data."""
15+
"""
16+
Complex modeling infrastructure: a modulare framework for multi-modal
17+
modeling of scientific data.
18+
"""
1619

1720
# package version
1821
from diffpy.cmi.version import __version__ # noqa

src/diffpy/cmi/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
from diffpy.cmi.version import __version__
22

3+
34
def main():
45
print(f"diffpy.cmi version: {__version__}")
56

7+
68
if __name__ == "__main__":
7-
main()
9+
main()

0 commit comments

Comments
 (0)