Skip to content

Commit

Permalink
fixes lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed Apr 28, 2023
1 parent f886a3d commit 30a60dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 5 additions & 3 deletions src/xchembku_api/crystal_plate_objects/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ class ThingTypes:

# Names that appear in the Formulatrix database, and how they map to our class types.
TREENODE_NAMES_TO_THING_TYPES = {
"SWISSci_2drop": ThingTypes.SWISS2,
"SWISSci_3Drop": ThingTypes.SWISS3,
"SWISSci_3drop": ThingTypes.SWISS3,
"Mitegen_insitu1": ThingTypes.MITEGEN,
"MiTInSitu": ThingTypes.MITEGEN,
# When adding these plate types, need to add corresponding entries to factory in crystal_plate_objects.py.
# TODO: Add 2drop and mitegen plate types.
# "SWISSci_2drop": ThingTypes.SWISS2,
# "Mitegen_insitu1": ThingTypes.MITEGEN,
# "MiTInSitu": ThingTypes.MITEGEN,
}
4 changes: 1 addition & 3 deletions src/xchembku_lib/crystal_plate_objects/swiss3.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import logging
from typing import Dict, Tuple

from dls_utilpack.callsign import callsign
from typing import Tuple

# Base class for generic things.
from dls_utilpack.thing import Thing
Expand Down
1 change: 0 additions & 1 deletion src/xchembku_lib/datafaces/direct_crystal_wells.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from typing import Any, Dict, List

from dls_normsql.constants import CommonFieldnames
from dls_utilpack.describe import describe

from xchembku_api.models.crystal_well_filter_model import CrystalWellFilterModel
from xchembku_api.models.crystal_well_model import CrystalWellModel
Expand Down

0 comments on commit 30a60dc

Please sign in to comment.