Skip to content

Commit b3750ff

Browse files
mkowalskijuagargi
authored andcommitted
Use python3 from env instead of /usr/bin
1 parent c4f6c75 commit b3750ff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

camerapp/imageserver/paparazzi.py

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

33
from picamera import PiCamera, Color
44
from time import sleep

sensorapp/sensorserver/sensorreader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
HOST = "localhost"
@@ -38,7 +38,7 @@
3838
ambientlight = AmbientLight( AMBIENTLIGHT_UID, ipcon)
3939
uvlight = BrickletUVLight( UVLIGHT_UID, ipcon)
4040
motiondetect = BrickletMotionDetector( MOTIONDETECTOR_UID, ipcon)
41-
41+
4242
ipcon.connect(HOST, PORT) # Connect to brickd
4343

4444
while (True):

sensorapp/sensorserver/timereader.py

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

44
import time

0 commit comments

Comments
 (0)