Skip to content

Commit

Permalink
Demote f-string to normal string
Browse files Browse the repository at this point in the history
  • Loading branch information
mschmidt87 committed May 25, 2020
1 parent f6c238c commit 4b26607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gp/cartesian_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def to_torch(
node.format_parameter_str()
all_parameter_str.append(node.parameter_str)
forward_str = ", ".join(node.output_str for node in self.output_nodes)
class_str = f"""\
class_str = """\
class _C(torch.nn.Module):
def __init__(self):
Expand Down

0 comments on commit 4b26607

Please sign in to comment.