Skip to content

Commit

Permalink
swiss3 returns None, None
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed May 1, 2023
1 parent 4b7fc7c commit 30f50a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xchembku_lib/crystal_plate_objects/swiss3.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
from typing import Dict, Tuple
from typing import Dict, Optional, Tuple

# Base class for generic things.
from dls_utilpack.describe import describe
Expand Down Expand Up @@ -32,7 +32,7 @@ def get_well_count(self) -> int:
def compute_drop_location_microns(
self,
crystal_well_record: Dict,
) -> Tuple[int, int]:
) -> Tuple[Optional[int], Optional[int]]:

logger.debug(describe("crystal_well_record", crystal_well_record))
if crystal_well_record.get("confirmed_target_x") is None:
Expand Down

0 comments on commit 30f50a6

Please sign in to comment.