Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellheor1 committed Oct 5, 2024
1 parent 9593af9 commit 612f913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podrazdeleniya/management/commands/import_chambers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def handle(self, *args, **kwargs):
current_chamber_title = cells[chamber_title_idx].strip()
current_bed_number = cells[bed_number_idx].strip()
if not current_department_title or not current_chamber_title or not current_bed_number:
self.stdout.write(f'Пустая строка')
self.stdout.write('Пустая строка')
continue
department = Podrazdeleniya.objects.filter(title__iexact=current_department_title).first()
if not department:
Expand Down

0 comments on commit 612f913

Please sign in to comment.