Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Ruff flake8-async (ASYNC) #13727

Closed
wants to merge 1 commit into from
Closed

Conversation

Avasam
Copy link
Collaborator

@Avasam Avasam commented Mar 27, 2025

Ref #13295
flake8-async (ASYNC)

A handful of async-related rules that look reasonable. We happen to already respect all of them except 1: run-process-in-async-function (ASYNC221)

I followed the rule's recommendation using anyio for the sole reason that it's lighter than trio, and it's better than writing something like the followign (unless we add it to our internal lib):
image

But I don't know what's the actual impacts, if any. Can someone else tell me if async subprocess call in async method has real benefits or if we should just ignore that rule?

Copy link
Collaborator

@srittau srittau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apart from the fact that asyncio in Python is ... special (why aren't there any stdlib variants of those?): We don't need async calls in main(), considering that nothing is running to parallel at this point.

@AlexWaygood
Copy link
Member

AlexWaygood commented Mar 28, 2025

yeah, not sure that this group adds much value for this repo. The changes here are the kind of thing that would be important to ensure things stay performant for a large asynchronous program, but all our async scripts are pretty small and not really performance-critical. As @srittau points out, the extra await calls in main() don't offer any benefit in this case, since everything is running synchronously in this script until the for task in asyncio.as_completed(tasks): loop lower down in the main() function.

@Avasam Avasam closed this Mar 28, 2025
@Avasam Avasam deleted the Enable-Ruff-ASYNC branch March 28, 2025 20:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants