@@ -161,7 +161,7 @@ class _BooleanAttributeType(BooleanAttributeType, _AttributeType):
161
161
162
162
@staticmethod
163
163
def of (type_proto : concept_proto .Type ):
164
- return _BooleanAttributeType (Label .of (type_proto .label ), type_proto .isRoot , type_proto .isAbstract )
164
+ return _BooleanAttributeType (Label .of (type_proto .label ), type_proto .is_root , type_proto .is_abstract )
165
165
166
166
def as_remote (self , transaction ):
167
167
return _RemoteBooleanAttributeType (transaction , self .get_label (), self .is_root (), self .is_abstract ())
@@ -189,7 +189,7 @@ class _LongAttributeType(LongAttributeType, _AttributeType):
189
189
190
190
@staticmethod
191
191
def of (type_proto : concept_proto .Type ):
192
- return _LongAttributeType (Label .of (type_proto .label ), type_proto .isRoot , type_proto .isAbstract )
192
+ return _LongAttributeType (Label .of (type_proto .label ), type_proto .is_root , type_proto .is_abstract )
193
193
194
194
def as_remote (self , transaction ):
195
195
return _RemoteLongAttributeType (transaction , self .get_label (), self .is_root (), self .is_abstract ())
@@ -217,7 +217,7 @@ class _DoubleAttributeType(DoubleAttributeType, _AttributeType):
217
217
218
218
@staticmethod
219
219
def of (type_proto : concept_proto .Type ):
220
- return _DoubleAttributeType (Label .of (type_proto .label ), type_proto .isRoot , type_proto .isAbstract )
220
+ return _DoubleAttributeType (Label .of (type_proto .label ), type_proto .is_root , type_proto .is_abstract )
221
221
222
222
def as_remote (self , transaction ):
223
223
return _RemoteDoubleAttributeType (transaction , self .get_label (), self .is_root (), self .is_abstract ())
@@ -245,7 +245,7 @@ class _StringAttributeType(StringAttributeType, _AttributeType):
245
245
246
246
@staticmethod
247
247
def of (type_proto : concept_proto .Type ):
248
- return _StringAttributeType (Label .of (type_proto .label ), type_proto .isRoot , type_proto .isAbstract )
248
+ return _StringAttributeType (Label .of (type_proto .label ), type_proto .is_root , type_proto .is_abstract )
249
249
250
250
def as_remote (self , transaction ):
251
251
return _RemoteStringAttributeType (transaction , self .get_label (), self .is_root (), self .is_abstract ())
@@ -283,7 +283,7 @@ class _DateTimeAttributeType(DateTimeAttributeType, _AttributeType):
283
283
284
284
@staticmethod
285
285
def of (type_proto : concept_proto .Type ):
286
- return _DateTimeAttributeType (Label .of (type_proto .label ), type_proto .isRoot , type_proto .isAbstract )
286
+ return _DateTimeAttributeType (Label .of (type_proto .label ), type_proto .is_root , type_proto .is_abstract )
287
287
288
288
def as_remote (self , transaction ):
289
289
return _RemoteDateTimeAttributeType (transaction , self .get_label (), self .is_root (), self .is_abstract ())
0 commit comments