Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mathleur committed Aug 22, 2024
1 parent 9166fda commit dc2d2ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion polytope/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class Config(ConfigModel):
class PolytopeOptions(ABC):
@staticmethod
def get_polytope_options(options):

parser = argparse.ArgumentParser(allow_abbrev=False)
conflator = Conflator(app_name="polytope", model=Config, cli=False, argparser=parser, **options)
config_options = conflator.load()
Expand Down
2 changes: 1 addition & 1 deletion polytope/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def __init__(self, axes, *shapes):
path_segments = []

for i in range(0, len(shapes) - 1):
new_segment = Segment(axes, shapes[i], shapes[i+1])
new_segment = Segment(axes, shapes[i], shapes[i + 1])
path_segments.append(new_segment)

self.union = Union(self.axes(), *path_segments)
Expand Down

0 comments on commit dc2d2ff

Please sign in to comment.