-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace black with ruff, now linting imports so removed unused from r…
…equirements.txt (#90)
- Loading branch information
1 parent
8feda29
commit fc514a3
Showing
23 changed files
with
87 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
adafruit-circuitpython-asyncio @ git+https://github.com/adafruit/[email protected] | ||
adafruit-circuitpython-drv2605==1.3.4 | ||
adafruit-circuitpython-lis2mdl==2.1.23 | ||
adafruit-circuitpython-lsm303-accel==1.1.22 | ||
adafruit-circuitpython-lsm6ds==4.5.13 | ||
adafruit-circuitpython-mcp9808==3.3.24 | ||
adafruit-circuitpython-neopixel==6.3.12 | ||
adafruit-circuitpython-pca9685==3.4.16 | ||
adafruit-circuitpython-register==1.10.1 | ||
adafruit-circuitpython-rfm==1.0.3 | ||
adafruit-circuitpython-tca9548a==0.7.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
print("Initializing a cubesat object as `c` in the REPL...") | ||
import lib.pysquared.pysquared as pysquared | ||
|
||
print("Initializing a cubesat object as `c` in the REPL...") | ||
c = pysquared.Satellite() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,3 @@ | ||
Adafruit-Blinka==8.50.0 | ||
adafruit-circuitpython-busdevice==5.2.10 | ||
adafruit-circuitpython-connectionmanager==3.1.2 | ||
adafruit-circuitpython-requests==4.1.8 | ||
adafruit-circuitpython-typing==1.11.2 | ||
Adafruit-PlatformDetect==3.75.0 | ||
Adafruit-PureIO==1.1.11 | ||
binho-host-adapter==0.1.6 | ||
black==24.4.2 | ||
cfgv==3.4.0 | ||
click==8.1.7 | ||
distlib==0.3.8 | ||
filelock==3.15.4 | ||
identify==2.6.0 | ||
exceptiongroup==1.2.2 | ||
iniconfig==2.0.0 | ||
mypy-extensions==1.0.0 | ||
nodeenv==1.9.1 | ||
packaging==24.1 | ||
pathspec==0.12.1 | ||
platformdirs==4.2.2 | ||
pre-commit==3.8.0 | ||
pyftdi==0.56.0 | ||
pyserial==3.5 | ||
pyusb==1.2.1 | ||
PyYAML==6.0.1 | ||
pluggy==1.5.0 | ||
pre-commit==4.0.1 | ||
pytest==8.3.2 | ||
tomli==2.0.1 | ||
typing_extensions==4.12.2 | ||
virtualenv==20.26.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
print("I am in safemode. Help!") | ||
import microcontroller | ||
import time | ||
|
||
import microcontroller | ||
|
||
print("I am in safemode. Help!") | ||
|
||
time.sleep(10) | ||
microcontroller.reset() |
Oops, something went wrong.