Fix broken shebang

This commit is contained in:
Martin Thoma
2022-04-02 08:33:31 +02:00
parent 76802c10b1
commit a2645f97f6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
import random # for generating random numbers
import sys # for system function, like exit()
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# Ported from the BASIC source for 3D Tic Tac Toe
# in BASIC Computer Games, by David H. Ahl