Compare commits
2 commits
c944ec3114
...
0e040a9f56
Author | SHA1 | Date | |
---|---|---|---|
0e040a9f56 | |||
3625317a2d |
3 changed files with 18 additions and 18 deletions
6
Makefile
6
Makefile
|
@ -2,9 +2,9 @@
|
|||
.PHONY: lint
|
||||
lint: lint.py lint.sh
|
||||
|
||||
## lint.python | lint python files
|
||||
.PHONY: lint.python
|
||||
lint.python:
|
||||
## lint.py | lint python files
|
||||
.PHONY: lint.py
|
||||
lint.py:
|
||||
black $(shell find -type f -name "*.py")
|
||||
|
||||
## lint.sh | lint shell files
|
||||
|
|
|
@ -5,7 +5,7 @@ COLUMNS=$(tput cols)
|
|||
line() {
|
||||
i=1
|
||||
while [[ $i -le $COLUMNS ]]; do
|
||||
echo -en "\U1FB$((RANDOM % 3))$((RANDOM % 8+1))"
|
||||
echo -en "\U1FB$((RANDOM % 3))$((RANDOM % 8 + 1))"
|
||||
i=$((i + 1))
|
||||
done
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
# >>> conda initialize >>>
|
||||
# !! Contents within this block are managed by 'conda init' !!
|
||||
__conda_setup="$('$HOME/mambaforge/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
||||
__conda_setup="$('$HOME/mambaforge/bin/conda' 'shell.zsh' 'hook' 2>/dev/null)"
|
||||
if [ $? -eq 0 ]; then
|
||||
eval "$__conda_setup"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue