Skip to content

Commit 27ae281

Browse files
committed
updates
1 parent cf5f268 commit 27ae281

File tree

15 files changed

+24
-4
lines changed

15 files changed

+24
-4
lines changed

adapter/adapter_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"Adapter Concept Sample Code"
34
from abc import ABCMeta, abstractmethod
45

bridge/bridge_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"Bridge Pattern Concept Sample Code"
34
from abc import ABCMeta, abstractmethod
45

builder/builder_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"Builder Concept Sample Code"
34
from abc import ABCMeta, abstractmethod
45

command/command_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=arguments-differ
12
"The Command Pattern Concept"
23
from abc import ABCMeta, abstractmethod
34

composite/composite_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=arguments-differ
12
"The Composite pattern concept"
23
from abc import ABCMeta, abstractmethod
34

decorator/decorator_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"Decorator Concept Sample Code"
34
from abc import ABCMeta, abstractmethod
45

factory/factory_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"The Factory Concept"
34
from abc import ABCMeta, abstractmethod
45

interpreter/interpreter_concept.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"The Interpreter Pattern Concept"
34

45

@@ -7,7 +8,7 @@ class AbstractExpression():
78
@staticmethod
89
def interpret():
910
"""
10-
The `interpret` method gets called recursively for each
11+
The `interpret` method gets called recursively for each
1112
AbstractExpression
1213
"""
1314

iterator/iterator_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"The Iterator Pattern Concept"
34
from abc import ABCMeta, abstractmethod
45

observer/observer_concept.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=too-few-public-methods
2+
# pylint: disable=arguments-differ
23
"Observer Design Pattern Concept"
34

45
from abc import ABCMeta, abstractmethod

0 commit comments

Comments
 (0)