Skip to content
Snippets Groups Projects
Commit 01258401 authored by Eduardo Rodrigues's avatar Eduardo Rodrigues
Browse files

Merge branch 'AM_datatype' into 'master'

For DPA: Make the data_type optional as "data_type:Upgrade" is meaningless

See merge request !4496
parents 4c735a43 54a26b9b
No related branches found
No related tags found
1 merge request!4496For DPA: Make the data_type optional as "data_type:Upgrade" is meaningless
Pipeline #7119935 passed
###############################################################################
# (c) Copyright 2022-2023 CERN for the benefit of the LHCb Collaboration #
# (c) Copyright 2022-2024 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
......@@ -32,7 +32,7 @@ from PyConf.packing import default_persistreco_version
class HltSourceID(str, Enum):
""" possible values of the Hlt source ID used to identify the origin of
""" possible values of the Hlt source ID used to identify the origin of
the data in the various rawbanks produced by Hlt and/or Sprucing
"""
Hlt1 = "Hlt1"
......@@ -116,7 +116,7 @@ class CompressionSettings(BaseModel):
class Options(BaseModel):
"""Conditions"""
data_type: DataTypeEnum
data_type: Optional[DataTypeEnum] = "Upgrade"
simulation: bool
dddb_tag: Optional[str] = None
conddb_tag: Optional[str] = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment