Skip to content

Commit

Permalink
fix: runs linters
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 committed Sep 7, 2024
1 parent 771b499 commit b6cf2c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aind_data_transfer_service/configs/job_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ class BasicUploadJobConfigs(BaseSettings):

# Legacy way required users to input platform in screaming snake case
_PLATFORM_MAP: ClassVar = {
a.upper().replace("-", "_"): a for a in Platform.abbreviation_map.keys()
a.upper().replace("-", "_"): a
for a in Platform.abbreviation_map.keys()
}
_MODALITY_ENTRY_PATTERN: ClassVar = re.compile(r"^modality(\d*)$")
_DATETIME_PATTERN1: ClassVar = re.compile(
Expand Down

0 comments on commit b6cf2c9

Please sign in to comment.