diff options
| author | Phạm Huy Hoàng <hoangtun0810@gmail.com> | 2024-01-21 22:05:44 +0900 |
|---|---|---|
| committer | Phạm Huy Hoàng <hoangtun0810@gmail.com> | 2024-01-21 23:55:02 +0900 |
| commit | 77e298e4de607d69aa7f37dc6dcba6aee131ac7f (patch) | |
| tree | e3342d2c5b5244c13ee40c1ccc080192335ec277 /queries/python | |
| parent | fix(format-scripts): remove parens if possible (diff) | |
| download | nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar.gz nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar.bz2 nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar.lz nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar.xz nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.tar.zst nvim-treesitter-77e298e4de607d69aa7f37dc6dcba6aee131ac7f.zip | |
chore: format queries
Diffstat (limited to 'queries/python')
| -rw-r--r-- | queries/python/locals.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/queries/python/locals.scm b/queries/python/locals.scm index 80b4021c1..e0454dbf4 100644 --- a/queries/python/locals.scm +++ b/queries/python/locals.scm @@ -24,12 +24,12 @@ (import_statement name: (dotted_name - ((identifier) @local.definition.import))) + (identifier) @local.definition.import)) (import_from_statement name: (dotted_name - ((identifier) @local.definition.import))) + (identifier) @local.definition.import)) ; Function with parameters, defines parameters (parameters |
