summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-zuul-stream/git/org_project/playbooks/library/broken_module_no_result.py
blob: 0bdced5eb5548b1fb3826e8d8a34f9383f06cdf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3


def main():
    print("This module is broken")


try:
    from ansible.module_utils.basic import *  # noqa
except ImportError:
    pass


if __name__ == '__main__':
    main()