diff --git a/src/bonsai/bonsai/tool/unit.py b/src/bonsai/bonsai/tool/unit.py index d1be61e75f..e94f34996f 100644 --- a/src/bonsai/bonsai/tool/unit.py +++ b/src/bonsai/bonsai/tool/unit.py @@ -289,7 +289,7 @@ class Unit(bonsai.core.tool.Unit): return f"{feet}'" # If feet is 0, just show inches elif feet == 0: - return f"{inches:.4g}\"" + return f'{inches:.4g}"' # Show both feet and inches else: return f"{feet}'{inches:.4g}\"" diff --git a/src/ifcopenshell-python/docs/conf.py b/src/ifcopenshell-python/docs/conf.py index 6b81633689..dc15ece371 100644 --- a/src/ifcopenshell-python/docs/conf.py +++ b/src/ifcopenshell-python/docs/conf.py @@ -104,7 +104,12 @@ autoapi_dirs = [ # These are auto-generated based on the IFC schema, so exclude them # Temporarily ignore bsdd files until they are packaged properly in the wheel. -autoapi_ignore = ["*ifcopenshell/express/rules*", "*bsdd/bsdd_json.py", "*bsdd/type_hints.py", "*bsdd/yml_to_classes.py"] +autoapi_ignore = [ + "*ifcopenshell/express/rules*", + "*bsdd/bsdd_json.py", + "*bsdd/type_hints.py", + "*bsdd/yml_to_classes.py", +] # Custom autoapi templates to make it easier to read our docs autoapi_template_dir = "_autoapi_templates"