Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 22aa9ba

Browse files
committedMar 13, 2025·
format
1 parent b3aab37 commit 22aa9ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎codegen/datatypes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ def build_datatype_py(node):
102102
)
103103
buffer.write(f"import copy as _copy\n")
104104

105-
if node.name_property in deprecated_mapbox_traces or node.name_property == "template":
105+
if (
106+
node.name_property in deprecated_mapbox_traces
107+
or node.name_property == "template"
108+
):
106109
buffer.write(f"import warnings\n")
107110

108111
# Write class definition

0 commit comments

Comments
 (0)
Please sign in to comment.