mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #2614: Simplify calls of super() for Python 3
This commit is contained in:
@@ -15,7 +15,7 @@ class NaturalOrderingManager(Manager):
|
||||
|
||||
def get_queryset(self):
|
||||
|
||||
queryset = super(NaturalOrderingManager, self).get_queryset()
|
||||
queryset = super().get_queryset()
|
||||
|
||||
db_table = self.model._meta.db_table
|
||||
db_field = self.natural_order_field
|
||||
|
Reference in New Issue
Block a user