Skip to content

Commit

Permalink
STYLE: Remove trailing semicolons
Browse files Browse the repository at this point in the history
Remove trailing semicolons.

Fixes:
```
Trailing semicolon in the statement
```
  • Loading branch information
jhlegarreta committed Oct 22, 2023
1 parent 4c93d41 commit 4ce2c8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/wm_append_clusters_to_anatomical_tracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ def output_appended_tract(cluster_vtp_list, outputfile):
if idx > 0:
cluster_vtp_filename = line[idx-13:idx+4]

cluster_vtp_filename_left = os.path.join(inputdir_left, cluster_vtp_filename);
cluster_vtp_filename_left = os.path.join(inputdir_left, cluster_vtp_filename)
if not os.path.exists(cluster_vtp_filename_left):
print(f"<{os.path.basename(__file__)}> Error:", cluster_vtp_filename_left, "does not exist.")
exit()
cluster_vtp_list_left.append(cluster_vtp_filename_left)

cluster_vtp_filename_right = os.path.join(inputdir_right, cluster_vtp_filename);
cluster_vtp_filename_right = os.path.join(inputdir_right, cluster_vtp_filename)
if not os.path.exists(cluster_vtp_filename_right):
print(f"<{os.path.basename(__file__)}> Error:", cluster_vtp_filename_right, "does not exist.")
exit()
Expand Down Expand Up @@ -195,7 +195,7 @@ def output_appended_tract(cluster_vtp_list, outputfile):
if idx > 0:
cluster_vtp_filename = line[idx-13:idx+4]

cluster_vtp_filename_comm = os.path.join(inputdir_comm, cluster_vtp_filename);
cluster_vtp_filename_comm = os.path.join(inputdir_comm, cluster_vtp_filename)
if not os.path.exists(cluster_vtp_filename_comm):
print(f"<{os.path.basename(__file__)}> Error:", cluster_vtp_filename_comm, "does not exist.")
exit()
Expand Down

0 comments on commit 4ce2c8f

Please sign in to comment.