Skip to content
Snippets Groups Projects

Filling XLSX: Everything except multiple choice.

Merged Daniel Hornung requested to merge f-json-table into dev
All threads resolved!
Compare and Show latest version
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -16,6 +16,8 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import TYPE_CHECKING, Tuple
import caosdb as db
from caosadvancedtools.cfood import (AbstractFileCFood, assure_has_property,
assure_object_is_in_list)
@@ -53,7 +55,7 @@ class ExperimentCFood(AbstractFileCFood, WithREADME):
self.find_referenced_files([RESULTS])
@staticmethod
def create_identifiable_experiment(match) -> tuple[db.Record, db.Record]:
def create_identifiable_experiment(match) -> Tuple[db.Record, db.Record]:
# create the project identifiable
name = ExperimentCFood.name_beautifier(
match.group("project_identifier"))
Loading