Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit e0e3428

Browse files
committed
formatting
1 parent cec273c commit e0e3428

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/clue/board.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# dummy class for references to board display to work
22
# https://learn.adafruit.com/arduino-to-circuitpython/the-board-module
33

4+
45
class Display:
56
def __init__(self):
67
pass
7-
8-
def show(self,group):
8+
9+
def show(self, group):
910
group.draw()
1011

11-
DISPLAY = Display()
12+
13+
DISPLAY = Display()

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,9 +739,9 @@ export async function activate(context: vscode.ExtensionContext) {
739739
// Data received from Python process
740740
deviceProcess.stdout.on("data", data => {
741741
dataFromTheProcess = data.toString();
742-
console.log("here 1")
742+
console.log("here 1");
743743
console.log(`Device output = ${dataFromTheProcess}`);
744-
console.log("here 2")
744+
console.log("here 2");
745745
let messageToWebview;
746746
try {
747747
messageToWebview = JSON.parse(dataFromTheProcess);

0 commit comments

Comments
 (0)