autopep8 aggressive

autopep8 --in-place --recursive  --max-line-length=200 --aggressive --aggressive --aggressive ifcopenshell
This commit is contained in:
thorade
2017-11-06 11:06:40 +01:00
committed by Thomas Krijnen
parent 8439e5b46d
commit 6cd59aa121
9 changed files with 61 additions and 35 deletions
+4 -2
View File
@@ -61,9 +61,11 @@ class file(object):
elif isinstance(key, basestring):
return entity_instance(self.wrapped_data.by_guid(str(key)))
def by_id(self, id): return self[id]
def by_id(self, id):
return self[id]
def by_guid(self, guid): return self[guid]
def by_guid(self, guid):
return self[guid]
def add(self, inst):
inst.wrapped_data.this.disown()