Michael Dahl
Michael Dahl
Had the same problem. Resolved it by changing `x = image.flip_axis(x, img_col_axis)` to `x = image.image.flip_axis(x, img_col_axis)` and `x = image.flip_axis(x, img_row_axis)` to `x = image.image.flip_axis(x, img_row_axis)` in Generator.py
Thanks for your fast investigations! So as a user, you can do ``` require "i18n" I18n.locale = :de Dry::Validation::Schema.configure do |config| config.messages = :i18n end Dry::Validation::Schema::Form.configure do |config| config.messages =...
Hi @xavier-bouquiaux. I have just uploaded a pull request with pytest 8 support: #66. Feel free to try.