Skip to content

Commit

Permalink
fix codacy docstring issues
Browse files Browse the repository at this point in the history
  • Loading branch information
OnnoEbbens committed Aug 25, 2021
1 parent e70d8f0 commit 1f697fd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
27 changes: 27 additions & 0 deletions .prospector.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
pep257:
disable:
- D203
- D212
- D213
- D214
- D215
- D404
- D405
- D406
- D407
- D408
- D409
- D410
- D411
- D413
- D415
- D416
- D417

pylint:
disable:
# Disable unnecessary else after return as it complains when returning in an else statement
# which is often more readable
- no-else-return
- too-many-arguments
- too-many-locals
5 changes: 0 additions & 5 deletions nlmod/read/rws.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@

import logging
import os
import warnings

import geopandas as gpd
import nlmod
import numpy as np
import datetime as dt
import pandas as pd
import xarray as xr
from flopy.utils import GridIntersect

from .. import mdims, util

Expand Down

0 comments on commit 1f697fd

Please sign in to comment.