Skip to content

Commit

Permalink
Update src/electron/frontend/core/components/pages/guided-mode/result…
Browse files Browse the repository at this point in the history
…s/GuidedResults.js
  • Loading branch information
CodyCBakerPhD authored May 29, 2024
1 parent 7769de9 commit 0f85e0a
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,16 @@ export class GuidedResultsPage extends Page {
all the necessary data.
</p>
${new CodeBlock({
text: `from pynwb import NWBHDF5IO, NWBFile, TimeSeries
text: `from pynwb import NWBHDF5IO, NWBFile
filename = "${this.#sharedPath()}"
nwbfile_path= "${this.#sharedPath()}"
# Open the file
with NWBHDF5IO(filename, "r+") as io:
with NWBHDF5IO(path=nwbfile_path, mode="r+") as io:
nwbfile = io.read()
# Adjust the file as needed
# ...
`,
})}
<h5>Related Documentation</h5>
Expand Down

0 comments on commit 0f85e0a

Please sign in to comment.