Tim Kutcher

Results 13 comments of Tim Kutcher

Hi all - so I came up with a slightly tweaked workaround for this as well. I wrote a `PrefixPrinter` class which you can use to decorate the `PrettyPrinter` class...

@mohadel92 The solution I mention included some classes that were merged and released in 0.9.2. You can check out the pull request that has some examples of how you'd use...

Any updates on this? Silver lining is it's forced me to write more testing harnesses 😬 , but it's getting a little tricky to troubleshoot in some scenarios..

I see this is a bit old but I am having same issue in latest angular (13)

From my tracing / understanding, a good chunk of warnings are coming from trying to calculate things like contrast colors at scss compile time, even though the contrasting colors should...

@LayZeeDK thanks for that analysis, helpful in pinpointing some things! As far as addressing the contrasting color issue, elaborating on my initial comment I suppose the patch I am proposing...

As far as I see, to fully reproduce I would need to set up another private gitlab package registry, add a package to it and provide authentication info, etc.. Correct?...

Not sure if related, but seems allowNegativeNumbers is not behaving as anticipated in general. The demos/examples at https://jsdaddy.github.io/ngx-mask/#11 do not appear to be functioning as expected.

Having same issue. pymongo added an extra parameter to their CodecOptions (see release notes https://pymongo.readthedocs.io/en/stable/changelog.html#changes-in-version-4-3-4-3-2). mongomock will need to update their CodecOptions class to match. What I did as a...

@arturmkr Sure - here is a bit more context: Let's say in `my_lib/my_module.py` I have something like: ```py import pymongo from bson.codec_options import CodecOptions def get_mongo_client(db_uri): return pymongo.MongoClient(db_uri) def get_collection(mongo,...