Skip to content

Commit fac411f

Browse files
committed
Use the Python interpreter of the environment, not the system.
1 parent 965c7d2 commit fac411f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/examples_ScrollableAreaQt5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/python3 -B
1+
#! /usr/bin/env python3
22

33
import itertools
44
from PyQt5.QtCore import QSize

examples/examples_ScrollableAreaQt6.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/python3 -B
1+
#! /usr/bin/env python3
22

33
import itertools
44
from PyQt6.QtCore import QSize

examples/examples_ScrollableFrameTk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/python3 -B
1+
#! /usr/bin/env python3
22

33
import itertools
44
import tkinter as tk

examples/examples_ScrollablePanelWx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/python3 -B
1+
#! /usr/bin/env python3
22

33
import itertools
44
import wx

0 commit comments

Comments
 (0)