Skip to content

Commit

Permalink
Update code.py to correct errors in pull request checks
Browse files Browse the repository at this point in the history
  • Loading branch information
VPTechOps authored Mar 17, 2024
1 parent e0dc69a commit 076ea3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/camera/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
#
# SPDX-License-Identifier: Unlicense

import ipaddress
import adafruit_pycamera

import ssl

Check failure on line 8 in examples/camera/code.py

View workflow job for this annotation

GitHub Actions / test

standard import "import ssl" should be placed before "import adafruit_pycamera"
import wifi
import socketpool

Check failure on line 9 in examples/camera/code.py

View workflow job for this annotation

GitHub Actions / test

third party import "import socketpool" should be placed before "import adafruit_pycamera"
import adafruit_requests

Check failure on line 10 in examples/camera/code.py

View workflow job for this annotation

GitHub Actions / test

third party import "import adafruit_requests" should be placed before "import adafruit_pycamera"
import os

Check failure on line 11 in examples/camera/code.py

View workflow job for this annotation

GitHub Actions / test

standard import "import os" should be placed before "import socketpool"
import rtc
import adafruit_ntp
from adafruit_datetime import datetime

import time
import wifi
import bitmaptools
import displayio
import gifio
import ulab.numpy as np

UTC_OFFSET = os.getenv('UTC_OFFSET')
TZ = os.getenv('TZ')

Expand Down

0 comments on commit 076ea3c

Please sign in to comment.