Skip to content

Commit

Permalink
Remove f-string syntax incompatible with Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lbianchi-lbl committed Sep 21, 2023
1 parent e06bc5a commit 8dd598a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions foqus_lib/framework/surrogate/keras_nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,11 +361,11 @@ def run(self):

epochs_count = self.options["epoch"].value
verbose_setting = self.options["verbose"].value
self.msgQueue.put(f"{self.input=}")
self.msgQueue.put(f"{self.output=}")
self.msgQueue.put(f"input vars: {self.input}")
self.msgQueue.put(f"output vars: {self.output}")
input_data, output_data = self.getSelectedInputOutputData()
self.msgQueue.put(f"{input_data.columns=}")
self.msgQueue.put(f"{output_data.columns=}")
self.msgQueue.put(f"input data columns: {input_data.columns}")
self.msgQueue.put(f"output data columns: {output_data.columns}")

# np.random.seed(46)
# rn.seed(1342)
Expand Down

0 comments on commit 8dd598a

Please sign in to comment.