-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Switch to unquoted type annotations part 1 #7193
Switch to unquoted type annotations part 1 #7193
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7193 +/- ##
==========================================
- Coverage 98.66% 98.66% -0.01%
==========================================
Files 1106 1106
Lines 95864 95904 +40
==========================================
+ Hits 94580 94619 +39
- Misses 1284 1285 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
fwiw I hugely recommend getting familiar with https://docs.python.org/3/library/ast.html for this. Have a code generator write a sample script that takes a filename and uses the AST module to unquote all quoted type annotations in it. That'll give you a quick starting point, and then you can fiddle around with the script (manually, using breakpoints to understand what the AST library is doing; AI is only useful for generating the initial sample) to make it more precise. I seem to have deleted the script I wrote originally for 1999, but it's pretty easy to use the AST to figure out which modules are imported from cirq vs third-party, and then use that information to determine which type annotations refer to cirq vs third-party, and only replace the cirq ones. One thing that I remember being challenging was internal generics like |
78ceed5
to
3e25689
Compare
Executed ruff check --target-version=py310 --select=TC001
Turns out ruff has already a fixable rule for this, namely quoted-annotation (UP037). I have also applied typing-only-first-party-import (TC001) to make annotation-only imports conditional. Executed ruff check --target-version=py310 --select=UP037 --fix
ruff check --target-version=py310 --select=TC001 |
Discussed in Cirq Cynq 2025-04-02: also need to update the docs that describe how we want type annotations to be done. Not decided if we should make a separate issue or do the doc work as part of this PR. |
done separately in #7222 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
No change in the effective code. A batch of 50 files.
Partially implements #1999