1Mark

Results 23 issues of 1Mark

At on `2022-05-11 at 16:43 GMT+1` I received ``` INFO - Your credentials are still valid for 1813.178155 seconds they will expire at 2022-05-11 16:11:37 ``` Which of course makes...

You can't just run `bump2version --new-version 0.1.7` ``` Reading config file setup.cfg: [bumpversion] current_version = 0.1.6 commit = True tag = True [bumpversion:file:deeppath/__init__.py] search = __version__ = "{current_version}" replace =...

Hi, Is it possible that when a user is signed in using omniauth that their credentials is only checked using their provider but they are not logged in with the...

Since `datetime.datetime.strftime` doesn't have an easy way to convert a datetime with microsecond precision to millisecond precision this also leaks into Marshmallow. I have come up with ``` from marshmallow...

_schema is used to store schema level errors, if we know what the schema is called why do we use `_schema` ``` from marshmallow import Schema, fields class UserSchema(Schema): name...

One of the really nice features is the frame preview at the bottom. But when I tried this application my frame preview was tiny and unusable. ![Editor.3586032f.gif](https://user-images.githubusercontent.com/15360245/147932947-5a05d044-ff00-4603-91f2-a6b4ce3dd48b.gif) Is there a...

🔷Enhancement
⬜ Pending

I checked the documentation but after applying obfuscation, is it possible to select and undo it or modify it? It seems like it isn't but I couldn't find any documentation...

The following example in the README doesn't work when I run it using pytest 5.3.2 ``` from freezegun import freeze_time @freeze_time("2012-01-14", as_arg=True) def test(frozen_time): assert datetime.datetime.now() == datetime.datetime(2012, 1, 14)...

In the same way `gvm pkgset create --local` works `gvm pkgset delete --local` should work too I tried `gvm pkgset delete --local` `gvm pkgset delete local` `gvm pkgset delete L`...

``` Beware: reverse() only deletes attributes. If you curse()'d to replace a pre-existing attribute, reverse() won't re-install the existing attribute. ``` Any workarounds for this?