1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

hide the python code part from shell parsers

This works around a syntax warning of the continuous integration system.
The cause of this warning could have never triggered anyway.
This commit encloses the whole python code safely in a "here" document.
This commit is contained in:
Lars Kruse 2015-10-30 05:23:46 +01:00
parent 3509d2a6ed
commit 14ff36a31c

View file

@ -53,6 +53,10 @@ else
python3 "$0" "$@"
fi
exit $?
# For shell: ignore everything starting from here until the last line of this file.
# This is necessary for syntax checkers that try to complain about invalid shell syntax below.
true <<EOF
"""
@ -450,3 +454,7 @@ if __name__ == "__main__":
# output values
for item in ath9k.get_values(get_scope()):
print(item)
# final marker for shell / python hybrid script (see "Interpreter Selection")
EOF = True
EOF