aboutsummaryrefslogtreecommitdiff
path: root/contrib/python/examples/eg_image_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/examples/eg_image_list.py')
-rw-r--r--contrib/python/examples/eg_image_list.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/contrib/python/examples/eg_image_list.py b/contrib/python/examples/eg_image_list.py
deleted file mode 100644
index ef31fd708..000000000
--- a/contrib/python/examples/eg_image_list.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python3
-"""Example: Show all images on system."""
-
-import podman
-
-print('{}\n'.format(__doc__))
-
-with podman.Client() as client:
- for img in client.images.list():
- print(img)