File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ def get_relations(
297
297
relations [my_fieldname ] = (other_field , other_table )
298
298
return relations
299
299
300
- def get_key_columns ( # pylint: disable=no-self-use
300
+ def get_key_columns (
301
301
self , cursor : "CursorWrapper" , table_name : str
302
302
) -> List [Tuple [str , str , str ]]:
303
303
"""
Original file line number Diff line number Diff line change @@ -2224,7 +2224,7 @@ def use_pure(self):
2224
2224
return Protobuf .use_pure
2225
2225
2226
2226
@use_pure .setter
2227
- def use_pure (self , value ): # pylint: disable=no-self-use
2227
+ def use_pure (self , value ):
2228
2228
if not isinstance (value , bool ):
2229
2229
raise ProgrammingError ("'use_pure' option should be True or False" )
2230
2230
Protobuf .set_use_pure (value )
You can’t perform that action at this time.
0 commit comments