@@ -563,56 +563,56 @@ class Meta(AbstractIDToken.Meta):
563
563
564
564
565
565
def get_application_model ():
566
- """ Return the Application model that is active in this project. """
566
+ """Return the Application model that is active in this project."""
567
567
return apps .get_model (oauth2_settings .APPLICATION_MODEL )
568
568
569
569
570
570
def get_grant_model ():
571
- """ Return the Grant model that is active in this project. """
571
+ """Return the Grant model that is active in this project."""
572
572
return apps .get_model (oauth2_settings .GRANT_MODEL )
573
573
574
574
575
575
def get_access_token_model ():
576
- """ Return the AccessToken model that is active in this project. """
576
+ """Return the AccessToken model that is active in this project."""
577
577
return apps .get_model (oauth2_settings .ACCESS_TOKEN_MODEL )
578
578
579
579
580
580
def get_id_token_model ():
581
- """ Return the AccessToken model that is active in this project. """
581
+ """Return the AccessToken model that is active in this project."""
582
582
return apps .get_model (oauth2_settings .ID_TOKEN_MODEL )
583
583
584
584
585
585
def get_refresh_token_model ():
586
- """ Return the RefreshToken model that is active in this project. """
586
+ """Return the RefreshToken model that is active in this project."""
587
587
return apps .get_model (oauth2_settings .REFRESH_TOKEN_MODEL )
588
588
589
589
590
590
def get_application_admin_class ():
591
- """ Return the Application admin class that is active in this project. """
591
+ """Return the Application admin class that is active in this project."""
592
592
application_admin_class = oauth2_settings .APPLICATION_ADMIN_CLASS
593
593
return application_admin_class
594
594
595
595
596
596
def get_access_token_admin_class ():
597
- """ Return the AccessToken admin class that is active in this project. """
597
+ """Return the AccessToken admin class that is active in this project."""
598
598
access_token_admin_class = oauth2_settings .ACCESS_TOKEN_ADMIN_CLASS
599
599
return access_token_admin_class
600
600
601
601
602
602
def get_grant_admin_class ():
603
- """ Return the Grant admin class that is active in this project. """
603
+ """Return the Grant admin class that is active in this project."""
604
604
grant_admin_class = oauth2_settings .GRANT_ADMIN_CLASS
605
605
return grant_admin_class
606
606
607
607
608
608
def get_id_token_admin_class ():
609
- """ Return the IDToken admin class that is active in this project. """
609
+ """Return the IDToken admin class that is active in this project."""
610
610
id_token_admin_class = oauth2_settings .ID_TOKEN_ADMIN_CLASS
611
611
return id_token_admin_class
612
612
613
613
614
614
def get_refresh_token_admin_class ():
615
- """ Return the RefreshToken admin class that is active in this project. """
615
+ """Return the RefreshToken admin class that is active in this project."""
616
616
refresh_token_admin_class = oauth2_settings .REFRESH_TOKEN_ADMIN_CLASS
617
617
return refresh_token_admin_class
618
618
0 commit comments