Skip to content

Commit

Permalink
Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Apr 25, 2024
1 parent d8360f0 commit fb51c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atomisticparsers/utils/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def write_interaction_values(values):

interactions.sort(key=lambda x: x.get("type"))
current_type = interactions[0].get("type")
interaction_values = {}
interaction_values: Dict[str, Any] = {}
for interaction in interactions:
interaction_type = interaction.get("type")
if current_type and current_type != interaction_type:
Expand Down

0 comments on commit fb51c80

Please sign in to comment.