Skip to content

Commit f9e3864

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7ae4b7e commit f9e3864

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bash/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
install: software
1+
install: software
22

33
time-los-angeles:
44
sudo timedatectl set-timezone America/Los_Angeles

bash/rocky.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ xrdp:
177177
sudo systemctl enable --now xrdp
178178
sudo passwd rocky
179179

180-
.PHONY: install docker photonics vim brew pip software config fish colors anaconda2 iterm tmux ipkiss3 lumerical dotfiles vnc nodejs klayout
180+
.PHONY: install docker photonics vim brew pip software config fish colors anaconda2 iterm tmux ipkiss3 lumerical dotfiles vnc nodejs klayout

bash/vnc/xstartup_kde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ startkde &
1515
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
1616
xsetroot -solid grey
1717
vncconfig -iconic &
18-
konsole -geometry 80x24+10+10 -title "$VNCDESKTOP Desktop" &
18+
konsole -geometry 80x24+10+10 -title "$VNCDESKTOP Desktop" &

tutorials/python/decorators2020/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _timer(*args, **kwargs):
1717
t0 = time.perf_counter()
1818
value = func(*args, **kwargs)
1919
t1 = time.perf_counter()
20-
print(f"elapsed time: {t1-t0} seconds")
20+
print(f"elapsed time: {t1 - t0} seconds")
2121
return value
2222

2323
return _timer

0 commit comments

Comments
 (0)