8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / application / _show_advanced_python_example.html.erb
1 An example python command to get a <%= object.class.to_s.underscore %> using its uuid:
2 <pre>
3 import arvados
4
5 x = arvados.api().<%= object.class.to_s.pluralize.underscore %>().get(uuid='<%= object.uuid %>').execute()
6 </pre>