Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Update wifi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TrollSkull authored Nov 14, 2021
1 parent ae1e69a commit 28d6ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/wifi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
def writeFile_1():
file = open("wifi_connection.sh", "w")
file.write("""#!/bin/bash
export wifi='1'""")
export wifi='true'""")

def writeFile_0():
file = open("wifi_connection.sh", "w")
file.write("""#!/bin/bash
export wifi='0'""")
export wifi='false'""")

def checkWifi():
try:
Expand Down

0 comments on commit 28d6ced

Please sign in to comment.