ISEPOS-2325 Fix 'NoneType' object is not iterable #1

Merged
mieszkomakuch merged 3 commits from bugfix/ISEPOS-2325-fix-nontype-object-bug into master 2025-03-24 14:32:28 +01:00

Raise error if there is no b_method set: raise ValueError("Please chose an option for b-value")

Raise error if there is no b_method set: raise ValueError("Please chose an option for b-value")
mieszkomakuch added 2 commits 2025-03-11 14:35:09 +01:00
Author
Owner

I've enabled development mode on the epos.isl instance for the MaxMagnitude app. You can find the app, along with its input data, in the Test user directory:

-> TicketReproduceData/ISEPOS-2325/84. MaxMagnitudeDPModels

To test the changes, try switching between:

  • Built-in version (from the artifact) — this should reproduce the 'NoneType' object is not subscriptable error
  • Development branch: official-apps/MaxMagnitudeDPModels/BRANCH/bugfix/ISEPOS-2325-fix-nontype-object-bug — this version includes the bugfix
I've enabled development mode on the `epos.isl` instance for the **MaxMagnitude** app. You can find the app, along with its input data, in the **Test** user directory: -> [TicketReproduceData/ISEPOS-2325/84. MaxMagnitudeDPModels](https://epos.insilicolab-dev.grid.cyfronet.pl/?lang=en#workspace:TicketReproduceData/ISEPOS-2325/84.%20MaxMagnitudeDPModels) To test the changes, try switching between: - **Built-in version** (from the artifact) — this should reproduce the `'NoneType' object is not subscriptable` error - **Development branch:** `official-apps/MaxMagnitudeDPModels/BRANCH/bugfix/ISEPOS-2325-fix-nontype-object-bug` — this version includes the bugfix
mieszkomakuch requested review from asia 2025-03-21 11:43:48 +01:00
mieszkomakuch requested review from ymwenda 2025-03-21 11:43:49 +01:00
asia requested changes 2025-03-21 12:57:41 +01:00
Dismissed
@ -38,3 +38,3 @@
parser.add_argument("--ssd", help="Static stress drop (in Pa).", type=float, default=3000000)
parser.add_argument("--C", help="Geometrical constant.", type=float, default=0.95)
parser.add_argument("--b_value_type", help="b-value type: parameter of type 'TEXT'", action='append')
parser.add_argument("--b_value_type", help="b-value type: parameter of type 'TEXT'", action='append', default="b")
Member

With this setting, if you don't check any of the options in the interface, the app gets executed properly, but for the user it looks like it was without any b option selected, while underneath something is selected, and the user doesn't know about it. I wouldn't set this option here, and let the error be comunicated from the app (that nothing was selected). In this way we'll be consistent with what is shown in the interface.
Then, to avoid the error altogether, in the interface we should validate the field to ensure something is selected.

With this setting, if you don't check any of the options in the interface, the app gets executed properly, but for the user it looks like it was without any b option selected, while underneath something is selected, and the user doesn't know about it. I wouldn't set this option here, and let the error be comunicated from the app (that nothing was selected). In this way we'll be consistent with what is shown in the interface. Then, to avoid the error altogether, in the interface we should validate the field to ensure something is selected.
Author
Owner

Ok, I removed default value from maxmagnitude_wrapper.py and I will add validation to form field

Ok, I removed default value from `maxmagnitude_wrapper.py` and I will add validation to form field
mieszkomakuch added 1 commit 2025-03-24 12:45:50 +01:00
asia approved these changes 2025-03-24 13:41:03 +01:00
ymwenda approved these changes 2025-03-24 13:55:58 +01:00
mieszkomakuch merged commit 27cfbec8ba into master 2025-03-24 14:32:28 +01:00
Login to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: official-apps/MaxMagnitudeDPModels#1
No description provided.