Skip to content

Commit

Permalink
fixes mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed Apr 8, 2023
1 parent 12bdbc7 commit 89178da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xchembku_lib/datafaces/direct_crystal_plates.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import copy
import logging
from typing import Dict, List
from typing import Dict, List, Union

from dls_normsql.constants import CommonFieldnames
from dls_utilpack.describe import describe
Expand Down Expand Up @@ -102,7 +102,7 @@ async def fetch_crystal_plates(
Plates need a droplocation if they have an autolocation but no droplocation.
"""

subs = []
subs: List[Union[str, int]] = []

where = "WHERE"

Expand Down

0 comments on commit 89178da

Please sign in to comment.