Skip to content

Commit 40499ba

Browse files
committed
Update and correct docstring
1 parent fbd2d41 commit 40499ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pynch/parse.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ class Parse:
1010
"""
1111

1212
def __init__(self):
13-
"""Construct the symbol to Z map and set the AME header length."""
13+
"""Construct the symbol to Z map.
14+
15+
The _read functions could be taken out of the class, but then they wouldn't be inherited by the file parsers,
16+
so lets leave them as members for the moment.
17+
"""
1418
super(Parse, self).__init__()
1519
self.z_to_symbol = {
1620
0: "n", 1: "H", 2: "He", 3: "Li", 4: "Be", 5: "B", 6: "C", 7: "N", 8: "O", 9: "F",

0 commit comments

Comments
 (0)