Skip to content

Commit

Permalink
Fixed get_parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-polk committed Nov 29, 2024
1 parent 0bbe99e commit 487ebb1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fluorescence_assay/plate_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from abc import ABC, abstractmethod
from dataclasses import dataclass, field
from typing import Optional

from bs4 import BeautifulSoup

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -74,5 +73,5 @@ def fix_type(val):
return fix_type(
self._data.select(
f'Section[Name="{section}"] > Parameters > Parameter[Name="{parameter}"]'
)
)[0]["Value"]
)

0 comments on commit 487ebb1

Please sign in to comment.