Skip to content

Commit 26052db

Browse files
authored
Merge pull request #294 from pjreiniger/fix_mistakes
Fix bazel update-yaml, non bazel update-init
2 parents 1e04959 + c853ebc commit 26052db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/semiwrap/tool/create_imports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ def run(self, args):
155155
base = to_update
156156
compiled = None
157157

158-
ic.create(base, compiled, True)
158+
ic.create(base, compiled, True, None)

src/semiwrap/tool/update_yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def merge_data(
246246
output_file = override_output_directory / pathlib.Path(
247247
*disabled_file.parts[1:]
248248
)
249-
shutil.copy(project_root / disabled_file, output_file)
249+
shutil.copy(project_root / disabled_file, output_file)
250250

251251
# Delete files that are no longer used in generation
252252
deleted_files = original_files.difference(generated_files).difference(

0 commit comments

Comments
 (0)