Skip to content

Commit 153548b

Browse files
committed
disable pylint warning unnecessary-pass for stub method in property_base.py
1 parent e270b8b commit 153548b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sbol3/property_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import abc
22
import collections
3-
from collections.abc import MutableSequence, Iterable
4-
from typing import Any, Optional, List, Dict, Union
3+
from collections.abc import Iterable, MutableSequence
4+
from typing import Any, Dict, List, Optional, Union
55

66
from sbol3 import ValidationReport
77

@@ -55,7 +55,7 @@ def item_added(self, item: Any) -> None:
5555
any additional processing on items after they are added. This method
5656
will be called on each individual item that was added to the list.
5757
"""
58-
pass
58+
pass # pylint: disable=unnecessary-pass
5959

6060
@property
6161
def attribute_name(self) -> Union[str, None]:

0 commit comments

Comments
 (0)