Skip to content

Commit d272c94

Browse files
committed
Remove reference to non-existent directory
The `lint_all.sh` script invoked `pylint` with a couple of subdirectories, including `./examples`. However, that directory doesn't exist. Apparently Pylint version 2.4.4 didn't complain about this, but later versions of Pylint do.
1 parent 452a212 commit d272c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lint_all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
# ==============================================================================
1616
echo "Checking for lint in python code...";
17-
linting_outputs=$(pylint --rcfile .pylintrc ./tensorflow_quantum ./examples);
17+
linting_outputs=$(pylint --rcfile .pylintrc ./tensorflow_quantum);
1818
exit_code=$?
1919
if [ "$exit_code" == "0" ]; then
2020
echo "Python linting complete!";

0 commit comments

Comments
 (0)