refactor to single-line conditional assignments

This commit is contained in:
Jan Petykiewicz 2024-07-28 20:16:59 -07:00
parent c48b427c77
commit 99e55f931c
2 changed files with 2 additions and 8 deletions

View File

@ -1038,10 +1038,7 @@ class Library(ILibrary):
if key in self.mapping:
raise LibraryError(f'"{key}" already exists in the library. Overwriting is not allowed!')
if callable(value):
value = value()
else:
value = value
value = value() if callable(value) else value
self.mapping[key] = value
def __delitem__(self, key: str) -> None:

View File

@ -331,10 +331,7 @@ class Polygon(Shape):
Returns:
A Polygon object containing the requested octagon
"""
if regular:
s = 1 + numpy.sqrt(2)
else:
s = 2
s = (1 + numpy.sqrt(2)) if regular else 2
norm_oct = numpy.array([
[-1, -s],