Skip to content

Commit

Permalink
Merge branch 'fix_linter' into 'master'
Browse files Browse the repository at this point in the history
Fix linter in CI

See merge request 3d/cars-park/cars!786
  • Loading branch information
dyoussef committed Dec 9, 2024
2 parents 911f1ed + 3fb1ba3 commit c6bb5a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[MASTER]
# Analyze C extensions capabilities packages.
extension-pkg-allow-list=rasterio,rasterize,resample
extension-pkg-allow-list=rasterio,rasterize,resample,outlier_filter

# Extend Recursion limit for RecursionError in big files
init-hook='import sys; sys.setrecursionlimit(8 * sys.getrecursionlimit())'
Expand Down
4 changes: 2 additions & 2 deletions cars/pipelines/default/default_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

# pylint: disable=too-many-lines
# attribute-defined-outside-init is disabled so that we can create and use
# attributes however we need, to stick to the "everything is attribute" logic
# introduced in issue#895
# pylint: disable=too-many-lines,attribute-defined-outside-init
# pylint: disable=attribute-defined-outside-init
"""
CARS default pipeline class file
"""
Expand Down

0 comments on commit c6bb5a6

Please sign in to comment.