Skip to content

Commit 86c6ec2

Browse files
authored
Merge pull request #1899 from adafruit/restore-calendar-authenticator.py
restore authenticator.py from authenticator/code.py
2 parents 62440af + 363d41a commit 86c6ec2

9 files changed

Lines changed: 2 additions & 1 deletion

File tree

File renamed without changes.

CLUE_Rock_Paper_Scissors/advanced/rps_advertisements/code.py renamed to CLUE_Rock_Paper_Scissors/advanced/rps_advertisements.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CLUE_Rock_Paper_Scissors/advanced/rps_crypto_chacha/code.py renamed to CLUE_Rock_Paper_Scissors/advanced/rps_crypto_chacha.py

File renamed without changes.
File renamed without changes.
File renamed without changes.

pylint_check.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
PYLINT="`type -p pylint3 2>/dev/null || type -p pylint`"
44
echo "Using pylint bin at $PYLINT"
55

6+
# Use * as the default argument to avoid descending into hidden directories like .git
67
function find_pyfiles() {
7-
if [ $# -eq 0 ]; then set -- .; fi
8+
if [ $# -eq 0 ]; then set -- *; fi
89
for f in $(find "$@" -type f -iname '*.py'); do
910
if [ ! -e "$(dirname $f)/.circuitpython.skip" ]; then
1011
echo "$f"

0 commit comments

Comments
 (0)