mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
PEP 8 style issues: space after comma, blank lines between defs
This commit is contained in:
@@ -126,12 +126,14 @@ class DelayedObject(object):
|
||||
object.__setattr__(self, "klass", klass)
|
||||
object.__setattr__(self, "args", args)
|
||||
object.__setattr__(self, "kwargs", kwargs)
|
||||
|
||||
def __setattr__(self, name, value):
|
||||
self = object.__getattribute__(self, "klass")(
|
||||
*object.__getattribute__(self, "args"),
|
||||
**object.__getattribute__(self, "kwargs")
|
||||
)
|
||||
setattr(self, name, value)
|
||||
|
||||
def __getattribute__(self, name):
|
||||
self = object.__getattribute__(self, "klass")(
|
||||
*object.__getattribute__(self, "args"),
|
||||
|
||||
Reference in New Issue
Block a user