You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's an example of a file where Show Usages fails to detect all usages of all_updates.
classArgs(object):
""" Stores user arguments """do_a_thing=Falsedefmain():
""" main function """args=Args()
all_updates= ["foo"]
ifargs.do_a_thing:
# all_updates.append("bar") <- this is detected correctlyall_updates+= ["bar"] # this is notprint"Update databases (%d)"%len(all_updates)
if__name__=='__main__':
main()
Could you brief me on where to get started if I wanted to submit a PR? Thanks
My system:
> atom --version
Atom : 1.15.0
Electron: 1.3.13
Chrome : 52.0.2743.82
Node : 6.5.0
Hi @derwentx. Thanks for opening an issue. I am afraid that a bug like this would be something that needs to be fixed in jedi though, which is what powers the functionality of get usages. Maybe try poke around in there?
Hey!
Here's an example of a file where Show Usages fails to detect all usages of
all_updates
.Could you brief me on where to get started if I wanted to submit a PR? Thanks
My system:
The text was updated successfully, but these errors were encountered: