Skip to content

Commit 14a970f

Browse files
author
Thinh Nguyen
authored
f-string formatting
1 parent 5d41039 commit 14a970f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

element_array_ephys/ephys_acute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def activate(
7272
create_tables=create_tables,
7373
add_objects=_linking_module.__dict__,
7474
)
75-
ephys_report.activate(ephys_schema_name + '_report', ephys_schema_name)
75+
ephys_report.activate(f"{ephys_schema_name}_report", ephys_schema_name)
7676

7777

7878
# -------------- Functions required by the elements-ephys ---------------

element_array_ephys/ephys_chronic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def activate(
7474
create_tables=create_tables,
7575
add_objects=_linking_module.__dict__,
7676
)
77-
ephys_report.activate(ephys_schema_name + '_report', ephys_schema_name)
77+
ephys_report.activate(f"{ephys_schema_name}_report", ephys_schema_name)
7878

7979

8080
# -------------- Functions required by the elements-ephys ---------------

element_array_ephys/ephys_no_curation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def activate(
7373
create_tables=create_tables,
7474
add_objects=_linking_module.__dict__,
7575
)
76-
ephys_report.activate(ephys_schema_name + '_report', ephys_schema_name)
76+
ephys_report.activate(f"{ephys_schema_name}_report", ephys_schema_name)
7777

7878

7979
# -------------- Functions required by the elements-ephys ---------------

element_array_ephys/ephys_precluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def activate(
6565
create_tables=create_tables,
6666
add_objects=_linking_module.__dict__,
6767
)
68-
ephys_report.activate(ephys_schema_name + '_report', ephys_schema_name)
68+
ephys_report.activate(f"{ephys_schema_name}_report", ephys_schema_name)
6969

7070

7171
# -------------- Functions required by the elements-ephys ---------------

0 commit comments

Comments
 (0)