fixed interface for saving image files @oleting

This commit is contained in:
weckyy702
2020-12-27 20:26:19 +01:00
parent b924e5edb0
commit d7bd22b997

View File

@@ -29,7 +29,7 @@ class NassiShneidermanDiagram:
h += inst.getblksize()
return int(h)
def convert_to_image(self, filepath, filename: str, x_size: int=200):
def convert_to_image(self, filepath: str, filename: str, x_size: int=200):
image_y_sz = self._get_image_height()
logging.info(f"Saving NSD to {filename}.png...")
with NSD_writer(filepath, filename, x_size, image_y_sz):