From 0b4319a7bb5b8e8c55143025137ab9fe8c1b6e46 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Tue, 14 Oct 2025 15:05:01 +0200 Subject: [PATCH] add missing "#!" sequence that marks interpreted scripts since these files have their executable bit set --- doc/examples/lic_demo.py | 1 + doc/examples/streamplot_demo.py | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/examples/lic_demo.py b/doc/examples/lic_demo.py index 4beb25cf9..a0c8509d0 100755 --- a/doc/examples/lic_demo.py +++ b/doc/examples/lic_demo.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 from __future__ import (absolute_import, division, print_function) # example showing how to use Line Integral Convolution to visualize a vector diff --git a/doc/examples/streamplot_demo.py b/doc/examples/streamplot_demo.py index 3fc605b70..144bc21c6 100755 --- a/doc/examples/streamplot_demo.py +++ b/doc/examples/streamplot_demo.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 from __future__ import (absolute_import, division, print_function) # example showing how to use streamlines to visualize a vector