Skip to content

Commit

Permalink
Correct bug in FONLLInfo constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
andreab1997 committed Oct 17, 2023
1 parent 790c0a5 commit 3e688bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/pineko/fonll.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ def __init__(
) -> None:
"""Initialize fonll info."""
self.paths = {
"ffns3": self.ffns3,
"ffn03": self.ffn03,
"ffns4": self.ffns4,
"ffns4til": self.ffns4til,
"ffns4bar": self.ffns4bar,
"ffn04": self.ffn04,
"ffns5": self.ffns5,
"ffns5til": self.ffns5til,
"ffns5bar": self.ffns5bar,
"ffns3": ffns3,
"ffn03": ffn03,
"ffns4": ffns4,
"ffns4til": ffns4til,
"ffns4bar": ffns4bar,
"ffn04": ffn04,
"ffns5": ffns5,
"ffns5til": ffns5til,
"ffns5bar": ffns5bar,
}
actually_existing_paths = [p for p in self.paths if self.paths[p] is not None]
for p in self.paths:
Expand Down

0 comments on commit 3e688bc

Please sign in to comment.