Skip to content

Commit b2df6c0

Browse files
committed
changed line len to 80 char
1 parent 7681bbd commit b2df6c0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

patterns/structural/proxy.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
"""
22
*What is this pattern about?
3-
Proxy is used in places where you want to add functionality to a class without changing its interface. The main class is called `Real Subject`. A client should use the proxy or the real subject without any code change, so both must have the same interface. Logging and controlling access to the real subject are some of the proxy pattern usages.
3+
Proxy is used in places where you want to add functionality to a class without
4+
changing its interface. The main class is called `Real Subject`. A client should
5+
use the proxy or the real subject without any code change, so both must have the
6+
same interface. Logging and controlling access to the real subject are some of
7+
the proxy pattern usages.
48
59
*References:
610
https://refactoring.guru/design-patterns/proxy/python/example

0 commit comments

Comments
 (0)