File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 1616##############################################################################
1717"""PDFfit2 - real space structure refinement program."""
1818
19+ # WARNING: Do NOT remove the isort: off/on comments in this file.
20+ # These tags are used to prevent isort from reordering imports in this file.
21+ # __version__ must be initialized before importing C++ extensions.
22+
23+ # isort: off
24+ # Import the package version before C++ extensions are loaded.
25+ from diffpy .pdffit2 .output import redirect_stdout # noqa
26+
27+ # Import C++ related modules since the __version__ attribute is used.
28+ from diffpy .pdffit2 .pdffit import PdfFit # noqa
29+
30+
31+ # isort: on
32+
1933# package version
2034from diffpy .pdffit2 .version import __version__ # noqa
2135
You can’t perform that action at this time.
0 commit comments