S. Co1

Results 25 comments of S. Co1

> Wonder dataclasses changes the AST parsing? It doesn't appear to, but it's definitely distinct from parsing function defs: ```py ClassDef( name='MyClass', bases=[], keywords=[], body=[ Assign( targets=[Name(id='val', ctx=Store())], value=List(elts=[], ctx=Load()),...

I'm not sure how common intentional mutable defaults are, but function call defaults are definitely common (similar to #203, which gave us `--extend-immutable-calls` for `B008`).

I'm not sure this can be done outside of the extension without an enhancement from the core. Per some similar issues like [this one](https://github.com/Microsoft/vscode/issues/29015): > The command is currently implemented...

@Gimly launching MATLAB from the command line is [by design fundamentally different](https://blogs.mathworks.com/community/2010/02/22/launching-matlab-without-the-desktop/) on [Windows](https://www.mathworks.com/help/matlab/ref/matlabwindows.html) and [Linux](https://www.mathworks.com/help/matlab/ref/matlablinux.html)/[Mac](https://www.mathworks.com/help/matlab/ref/matlabmac.html). Where the Linux/Mac versions support the `-nodesktop` option and will run natively in the...

Given the traffic on the main VSCode repo [here](https://github.com/Microsoft/vscode/issues/2809), it seems like this needs to be implemented at the extension level (e.g. DonJayamanne's [Python Extension](https://github.com/DonJayamanne/pythonVSCode/tree/master/src/client/common/variables)) and is not currently part...

Adding a couple more enhancements: - Add reminder ID to the confirmation embed - Add the target datetime to the confirmation embed (in addition to the currently provided timedelta)

For scoping this should be split into a few discrete chunks: **Chunk the First** (low hanging fruit) #749 * Reminder ID in confirmation embed * Target datetime in confirmation embed...

Did you already have something in mind to fix this? If I'm following correctly (disclaimer: I'm new to Flake8's internals), the inline `noqa` check comes from [this regex](https://github.com/PyCQA/flake8/blob/84c95766e679710d9a0fa910a1cd276c87be42c5/src/flake8/defaults.py#L27-L42), is it...

Moving to #151, I don't think this is related to this issue.