Skip to content

Commit 22aa9ba

Browse files
committed
format
1 parent b3aab37 commit 22aa9ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: codegen/datatypes.py

+4-1
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)