Skip to content

Commit

Permalink
Changed " embedded in f-strings to '
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed May 8, 2024
1 parent e9aa570 commit c3d58d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nmostesting/IS14Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def reset(self):
super().reset()

def _format_property_id(self, property_id):
return f"{str(property_id["level"])}p{str(property_id["index"])}"
return f"{str(property_id['level'])}p{str(property_id['index'])}"

def _format_method_id(self, method_id):
return f"{str(method_id["level"])}m{str(method_id["index"])}"
return f"{str(method_id['level'])}m{str(method_id['index'])}"

def _format_role_path(self, role_path):
return ".".join(r for r in role_path)
Expand Down

0 comments on commit c3d58d9

Please sign in to comment.