fmt: updates formatter and formats

This commit is contained in:
Deepak Mallubhotla 2024-09-04 14:58:20 -05:00
parent fbf712bdff
commit 46dcd3b1b2
Signed by: deepak
GPG Key ID: 976F3357369149AB
2 changed files with 2 additions and 4 deletions

View File

@ -44,7 +44,7 @@ fmt:
poetry run black . poetry run black .
fi fi
find kalpa -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; find kalpa -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
find bin -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; # find bin -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
# find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; # find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
# release the app, checking that our working tree is clean and ready for release, optionally takes target version # release the app, checking that our working tree is clean and ready for release, optionally takes target version

View File

@ -113,9 +113,7 @@ class Stage01Runner:
for tantri_index, tantri_config in enumerate( for tantri_index, tantri_config in enumerate(
self.config.generation_config.tantri_configs self.config.generation_config.tantri_configs
): ):
output_csv = directory / kalpa.common.tantri_full_output_name( output_csv = directory / kalpa.common.tantri_full_output_name(tantri_index)
tantri_index
)
binned_csv = directory / kalpa.common.tantri_binned_output_name( binned_csv = directory / kalpa.common.tantri_binned_output_name(
tantri_index tantri_index
) )