2025.11.6: Fixed naming error

This commit is contained in:
2025-11-13 17:31:33 +03:00
parent 2af4797346
commit 3be7d130d5
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ class FocusCompliance(Request):
for profile_id in profile_id_list: for profile_id in profile_id_list:
response = self.get(f'{self._focus_base_url}/companies/profiles/{profile_id}/report') response = self.get(f'{self._focus_base_url}/companies/profiles/{profile_id}/report')
result = self._save_file( result = self._save_file(
filename=f'Отчет_по_профилю_{profile_id_list[0]}', filename=f'Отчет_по_профилю_{profile_id_list[0]}_{profile_id}',
content=response.content, content=response.content,
file_type='docx', file_type='docx',
path=path path=path

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="kontur_focus", name="kontur_focus",
version="2025.11.5", version="2025.11.6",
author="Ilya Sapunov", author="Ilya Sapunov",
author_email="sapunov@selectel.ru", author_email="sapunov@selectel.ru",
description="Библиотека-обертка для взаимодействия с REST API Контур.Фокус и Фокус.Комплаенс", description="Библиотека-обертка для взаимодействия с REST API Контур.Фокус и Фокус.Комплаенс",