bcf-api-xml 0.4.18__tar.gz → 0.4.19__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/PKG-INFO +1 -1
  2. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/__init__.py +1 -1
  3. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/export/excel.py +1 -1
  4. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/pyproject.toml +1 -1
  5. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/README.md +0 -0
  6. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/Schemas/bcf.version +0 -0
  7. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/Schemas/markup.xsd +0 -0
  8. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/Schemas/project.xsd +0 -0
  9. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/Schemas/version.xsd +0 -0
  10. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/Schemas/visinfo.xsd +0 -0
  11. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/errors.py +0 -0
  12. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/export/__init__.py +0 -0
  13. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/export/zip.py +0 -0
  14. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/import_zip.py +0 -0
  15. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/ClippingPlane.py +0 -0
  16. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Color.py +0 -0
  17. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Comment.py +0 -0
  18. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Component.py +0 -0
  19. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Line.py +0 -0
  20. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/OrthogonalCamera.py +0 -0
  21. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/PerspectiveCamera.py +0 -0
  22. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Topic.py +0 -0
  23. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/ViewSetupHints.py +0 -0
  24. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Viewpoint.py +0 -0
  25. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/Visibility.py +0 -0
  26. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/VisualizationInfo.py +0 -0
  27. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/XYZ.py +0 -0
  28. {bcf_api_xml-0.4.18 → bcf_api_xml-0.4.19}/bcf_api_xml/models/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bcf-api-xml
3
- Version: 0.4.18
3
+ Version: 0.4.19
4
4
  Summary: Convert BCF-API to BCF-XML
5
5
  Home-page: https://github.com/bimdata/BCF-API-XML-translator
6
6
  License: MIT
@@ -4,4 +4,4 @@ from bcf_api_xml.export import to_xlsx # noqa: F401
4
4
  from bcf_api_xml.export import to_zip # noqa: F401
5
5
  from bcf_api_xml.import_zip import to_json # noqa: F401
6
6
 
7
- __version__ = "0.4.18"
7
+ __version__ = "0.4.19"
@@ -283,7 +283,7 @@ def to_xlsx(
283
283
  else:
284
284
  comment_date = comment_date.strftime("%Y-%m-%d, %H:%M:%S")
285
285
  concatenated_comments += (
286
- f"[{comment_date}] {comment['author']}: {comment['comment']}\n"
286
+ f"[{comment_date}] {comment.get('author')}: {comment.get('comment')}\n"
287
287
  )
288
288
  worksheet.write(row, COMMENTS_COL_INDEX, concatenated_comments, text_wrap_fmt)
289
289
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "bcf-api-xml"
3
- version = "0.4.18"
3
+ version = "0.4.19"
4
4
  description = "Convert BCF-API to BCF-XML"
5
5
  authors = ["Hugo Duroux <hugo@bimdata.io>"]
6
6
  license = "MIT"
File without changes