Skip to content

Commit 08da48d

Browse files
datapythonistaproost
authored andcommitted
CI: Fixing error in code checks in GitHub actions (pandas-dev#29683)
1 parent 8aa7e04 commit 08da48d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/code_checks.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
190190
invgrep -R --include="*.rst" ".. ipython ::" doc/source
191191
RET=$(($RET + $?)) ; echo $MSG "DONE"
192192

193-
    MSG='Check for extra blank lines after the class definition' ; echo $MSG
194-
    invgrep -R --include="*.py" --include="*.pyx" -E 'class.*:\n\n( )+"""' .
195-
    RET=$(($RET + $?)) ; echo $MSG "DONE"
193+
MSG='Check for extra blank lines after the class definition' ; echo $MSG
194+
invgrep -R --include="*.py" --include="*.pyx" -E 'class.*:\n\n( )+"""' .
195+
RET=$(($RET + $?)) ; echo $MSG "DONE"
196196

197197
MSG='Check that no file in the repo contains trailing whitespaces' ; echo $MSG
198198
set -o pipefail

0 commit comments

Comments
 (0)