Skip to content

Commit 20d7469

Browse files
committed
linting solves
1 parent f12e665 commit 20d7469

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"battery_voltage": 5.2,
33
"critical_battery_voltage": 6.6,
4-
"degraded_battery_voltage": 6.5,
54
"cubesat_name": "PROVES-",
65
"current_draw": 240.5,
76
"debug": true,
7+
"degraded_battery_voltage": 6.5,
88
"detumble_enable_x": true,
99
"detumble_enable_y": true,
1010
"detumble_enable_z": true,

src/flight-software/repl.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,19 @@
99
import board
1010

1111
try:
12-
from typing import Union
12+
pass
1313
except Exception:
1414
pass
1515

1616
import os
1717

1818
from version import __version__
1919

20-
from lib.adafruit_drv2605 import DRV2605 # This is Hacky V5a Devel Stuff###
2120
from lib.adafruit_mcp230xx.mcp23017 import (
2221
MCP23017, # This is Hacky V5a Devel Stuff###
2322
)
2423
from lib.adafruit_mcp9808 import MCP9808 # This is Hacky V5a Devel Stuff###
2524
from lib.adafruit_tca9548a import TCA9548A # This is Hacky V5a Devel Stuff###
26-
from lib.adafruit_veml7700 import VEML7700 # This is Hacky V5a Devel Stuff###
2725

2826
# from lib.pysquared.Big_Data import AllFaces ### This is Hacky V5a Devel Stuff###
2927
from lib.pysquared.beacon import Beacon
@@ -250,7 +248,7 @@ def all_faces_on():
250248

251249
light_sensor0 = VEML7700Manager(logger, tca[0])
252250
light_sensor1 = VEML7700Manager(logger, tca[1])
253-
light_sensor2= VEML7700Manager(logger, tca[2])
251+
light_sensor2 = VEML7700Manager(logger, tca[2])
254252
light_sensor3 = VEML7700Manager(logger, tca[3])
255253
light_sensor4 = VEML7700Manager(logger, tca[4])
256254

0 commit comments

Comments
 (0)