Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Oct 11, 2024
1 parent 2a163c0 commit aa41597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion finder/admin/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ class Meta:
class LabelAdmin(admin.ModelAdmin):
form = LabelForm
list_display = ['name']

4 changes: 2 additions & 2 deletions finder/contrib/common/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_editor_settings(self, request, inode):
settings = super().get_editor_settings(request, inode)
settings.update(
react_component='Common',
replace_file= True,
replace_file=True,
download_file=True,
)
return settings
Expand All @@ -23,7 +23,7 @@ def get_editor_settings(self, request, inode):
class PDFFileAdmin(CommonAdmin):
def get_editor_settings(self, request, inode):
settings = super().get_editor_settings(request, inode)
settings.update(view_original= True)
settings.update(view_original=True)
return settings


Expand Down

0 comments on commit aa41597

Please sign in to comment.