Skip to content

Commit b19a95b

Browse files
committed
restore __init__
1 parent 19c6f41 commit b19a95b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/diffpy/cmipdf/__init__.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@
1515
##############################################################################
1616
"""The code of the PDF pack of the diffpy.cmi package."""
1717

18-
__all__ = ["PDFGenerator", "DebyePDFGenerator", "PDFContribution", "PDFParser"]
19-
2018
from diffpy.cmipdf.debyepdfgenerator import DebyePDFGenerator
2119
from diffpy.cmipdf.pdfcontribution import PDFContribution
2220
from diffpy.cmipdf.pdfgenerator import PDFGenerator
2321
from diffpy.cmipdf.pdfparser import PDFParser
2422

23+
# package version
24+
from diffpy.cmipdf.version import __version__ # noqa
25+
26+
__all__ = ["PDFGenerator", "DebyePDFGenerator", "PDFContribution", "PDFParser"]
27+
28+
# silence the pyflakes syntax checker
29+
assert __version__ or True
30+
2531
# End of file

0 commit comments

Comments
 (0)