mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 07:50:16 +02:00
- update string format method - remove redundant default arguments from function calls - remove unused imports - remove unicode identifier from strings, it's default in py3 (see: https://stackoverflow.com/a/4182635/12201331)
7 lines
156 B
Python
7 lines
156 B
Python
from django.contrib import admin
|
|
|
|
from allianceauth.fleetactivitytracking.models import Fatlink, Fat
|
|
|
|
admin.site.register(Fatlink)
|
|
admin.site.register(Fat)
|