Skip to content

Commit f5baee8

Browse files
committed
Update naming.
1 parent d86b068 commit f5baee8

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

apds9960/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from apds9960.device import APDS9960
2+
3+
__all__ = [ 'APDS9960' ]
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from rpi_apds9960.const import *
2-
from rpi_apds9960.exceptions import *
1+
from apds9960.const import *
2+
from apds9960.exceptions import *
33

44
from time import sleep
55

rpi_apds9960/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

test-ambient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from rpi_apds9960.const import *
2-
from rpi_apds9960 import APDS9960
1+
from apds9960.const import *
2+
from apds9960 import APDS9960
33
import RPi.GPIO as GPIO
44
import smbus
55
from time import sleep

test-gesture.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from rpi_apds9960.const import *
2-
from rpi_apds9960 import APDS9960
1+
from apds9960.const import *
2+
from apds9960 import APDS9960
33
import RPi.GPIO as GPIO
44
import smbus
55
from time import sleep

test-prox.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from rpi_apds9960.const import *
2-
from rpi_apds9960 import APDS9960
1+
from apds9960.const import *
2+
from apds9960 import APDS9960
33
import RPi.GPIO as GPIO
44
import smbus
55
from time import sleep

0 commit comments

Comments
 (0)