Inline Hints for python only works partially

Hello everyone,

i am using pyCharm for the first time and noticed that Inline Hints for my python scripts only work partially and is being selective. as an example :

why does only `begin_with` argument get a hint and not the other two arguments? i do like the idea of Inline Hints not being too aggressive and noisy but was still strange to me. anyone know why this is happening?

Thanks in advance and here's the version and so on:

PyCharm 2026.1
Build #PY-261.22158.340, built on March 30, 2026
Source revision: 9a4acde0aae49
Runtime version: 25.0.2+10-b329.72 amd64137.0.17-261-b65
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Toolkit: sun.awt.X11.XToolkit
Linux 6.17.0-19-generic
Ubuntu 24.04.3 LTS; glibc: 2.39; desktop: GNOME (GNOME Shell 46.0)
Exception reporter ID: 081224385b3f8f3-bdef-4a1f-87b8-5f72c76ea87a
GC: G1 Young Generation, G1 Concurrent GC, G1 Old Generation
Memory: 2048M
Cores: 8
Registry:
 ide.experimental.ui=true
 trace.state.event.service.url=https://api.jetbrains.cloud/trace-status
Current Desktop: ubuntu:GNOME
 

 

0

Hello, Hosseinsherkat ,

Parameter hints show the names of parameters in methods and functions to make your code easier to read. By default, parameter hints are enabled and shown only for values that are literals or function expressions but not for named objects.

To fix it, you can go to Settings | Editor | Inlay Hints | Parameter names | Python and enable Non-literal arguments

0

请先登录再写评论。