Robert Kruus

Results 3 comments of Robert Kruus

Doesn't setting `g:black_virtualenv = "/usr/local/"` somewhere in vim startup files (or specifically for python files) do that? The path may vary depending on your distribution, it will search for the...

`g:black_virtualenv = "/usr/local/"` worked (at least for me) under 22.8.0, but failed like you predicted with 22.10.0 requiring access python site-packages directory. It's (at least partly) related to the CACHE_DIR...

See https://blog.qax.io/pytz-and-strange-timezones/ and https://stackoverflow.com/questions/24359540/why-doesnt-pytz-localize-produce-a-datetime-object-with-tzinfo-matching-the-t If you look at the output of `>>> datetime.datetime(2023, 7, 9, 20, 0, 0, tzinfo=pytz.timezone("US/Eastern")) datetime.datetime(2023, 7, 9, 20, 0, tzinfo=)` You notice the 'LMT-1 day,...