Phil-Barber
Phil-Barber
Feel free to decline if things aren't inline with what you would like. Happy to make any changes to args or functions etc as desired :) --- When updatecomment is...
I have the following serializer: ``` class ReportConfigurationSerializer(serializers.ModelSerializer[ReportScheduleConfiguration]): created_by = serializers.SlugRelatedField(read_only=True, slug_field="email") generation_settings = ReportGenerationSettingsJSONField(read_only=True) send_time_zone = TimeZoneSerializerField() class Meta: model = ReportScheduleConfiguration fields = ( "id", "name", "send_time", "send_time_zone",...
Details and recreation found here: https://stackoverflow.com/questions/71584885/ipdb-stops-showing-prompt-text-after-carriage-return My own debugging has shown that with tick=True or auto_tick_seconds>0 the problem goes away which for me points to the `FrozenDateTimeFactory` because of [this...