Skip to content

Commit

Permalink
Fix: CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Nov 18, 2023
1 parent ce80a46 commit d2a5742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pylint_cycles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function workaround_quirks() {
local version=$2

if [ "${target}" = "blender" ]; then
if [[ $version =~ ^2.8[0-9]$ || $version =~ ^2.9[0-9]$ || $version =~ ^3.[0-9]$ || $version =~ ^latest$ ]]; then
if [[ $version =~ ^2.8[0-9]$ || $version =~ ^2.9[0-9]$ || $version =~ ^3.[0-9]$ || $version =~ ^4.[0-9]$ || $version =~ ^latest$ ]]; then
# The method draw_panel_header comes from the Panel class which is a base class of CYCLES_PT_sampling_presets.
# The error "E1120: No value for argument 'layout'" is raised when calling the classmethod implicitly derived
# from base class. It is not clear why pylint does not handle this gracefully, so "fixing" it for pylint.
Expand Down

0 comments on commit d2a5742

Please sign in to comment.