Grant Jenks

Results 193 comments of Grant Jenks

I think the ideal here is: ``` def __eq__(self, that): if not isinstance(that, type(self)): return NotImplemented return ( self.__slots__ == that.__slots__ and all(item == iota for item, iota in zip(self,...

Are you on the most recent version of black? I’m guessing there’s something different about the trailing comma handling. Notice that the “type” field doesn’t have a trailing comma in...

I'm not sure how easy this is... but it would be great if Black would print all of the configs it's using with some kind of `-vvv` switch.

Yes, hooks/entry-points might be a good compromise if the configuration setting is rejected.

Please remove the replit dependency

This is a great start! Few things: 1. Please change the function naming convention to use snake_case rather than camelCase 2. Would you add a screenshot? I’m curious how the...

That screenshot is great! Love it. Yes, snake_case for both variable and function names.

1. Install pipx (https://github.com/pypa/pipx) 2. Install tox like “pipx install tox” 3. Run “tox -e bluecheck” to see errors 4. Run “tox -e blue” to reformat the code