Total Complexity | 3 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | #!/usr/bin/python |
||
6 | class ViewerMedium(object): |
||
7 | """Uses the system picture viewer to display an picture file. |
||
8 | """ |
||
9 | |||
10 | def __init__(self, dependencies): |
||
11 | pass |
||
12 | |||
13 | def export(self, formattedProvenance, form=None): |
||
14 | if formattedProvenance is None: |
||
15 | return |
||
16 | webbrowser.open(formattedProvenance) |
||
17 | |||
18 |