Skip to content

Commit 1217a49

Browse files
Fix f-string
Co-authored-by: Copilot <[email protected]>
1 parent 3372151 commit 1217a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/spyglass/common/common_nwbfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def _alter_spyglass_version(cls, nwb_file_path: str) -> None:
257257
@staticmethod
258258
def _logged_env_info():
259259
"""Get the environment information for logging."""
260-
env_info = "spyglass={sg_version} \n\n"
260+
env_info = f"spyglass={sg_version} \n\n"
261261
env_info += "Python Environment:\n"
262262
python_env = subprocess.check_output(
263263
["conda", "env", "export"], text=True

0 commit comments

Comments
 (0)