tanwirahmad
tanwirahmad
I have solved this issue by updating the `pre_save` method like this: ```python class ExtendedAutoSlugField(AutoSlugField): def pre_save(self, instance, add): # get currently entered slug value = self.value_from_object(instance) if self.always_update or...
I didn't know about `os.PathLike`. It makes perfect sense!
@gpotter2 The purpose of this PR is to support `os.PathLike` objects for `Pcapreader()`. IMHO, they are more useful than strings based paths. @p-l- My first option would not have worked...
I had the same kind of scenario. I solved it like this. ```python from cleantext import clean def clean_with_exceptions(text, *args, **kwargs): exceptions = kwargs.pop("exceptions", []) for idx, exp in enumerate(exceptions):...
Yes, I get the same error. The HTTP status code is always 400.
> As a work around, what if you try passing `"true"` instead of `True` and see if that helps. This fixes the issue. Should I close it?