Skip to content

Commit

Permalink
Merge pull request #19 from sjefferson99/main.py-type-error
Browse files Browse the repository at this point in the history
Fix type error
  • Loading branch information
sjefferson99 authored Nov 20, 2022
2 parents 715a239 + f44041c commit 5b8a961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def start_wifi() -> bool:
else:
print('connected')
status = wlan.ifconfig()
print( 'ip = ' + status[0] )
print( 'ip = ' + str(status[0]))
return True

# Enable webserver option (disable if relay module to be addressed via I2C on boatman network)
Expand Down

0 comments on commit 5b8a961

Please sign in to comment.