Skip to content

Commit

Permalink
clean up the code a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
idalindegaard committed Dec 13, 2024
1 parent 187d098 commit a86a2ca
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cg_lims/EPPs/files/femtopulse_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

LOG = logging.getLogger(__name__)

ROWS = list(range(1,13)) # list numbered 1 to 12
WELL_POSITIONS = [f"A{i}" for i in range(1,13)] # list with well positions A1-A12
ROWS = list(range(1,13)) # List numbered 1 to 12
WELL_POSITIONS = [f"A{i}" for i in range(1,13)] # List with well positions A1-A12
SAMPLE_NAMES = [""] * 12 # List with twelve empty positions for sample names


Expand Down Expand Up @@ -61,8 +61,6 @@ def get_data_and_write(
1: WELL_POSITIONS,
2: SAMPLE_NAMES
})
print(df)
print(file)
df.to_csv(Path(file), index=False, header=False)

@click.command()
Expand Down

0 comments on commit a86a2ca

Please sign in to comment.