Skip to content

Commit

Permalink
Merge pull request #135 from specklesystems/jrm/2.10-fixes
Browse files Browse the repository at this point in the history
Jrm/2.10 fixes
  • Loading branch information
JR-Morgan authored Nov 30, 2022
2 parents 06a7d41 + e19fc9e commit b1481bd
Show file tree
Hide file tree
Showing 4 changed files with 200 additions and 198 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
/root/.dotnet/tools/Speckle.Manager.Feed deploy \
-s << parameters.slug >> \
-v ${SEMVER} \
-u https://releases.speckle.dev/installers/<< parameters.file_slug >>/<< parameters.file_slug >>-${SEMVER}.<< parameters.extension >> \
-u https://releases.speckle.dev/installers/<< parameters.slug >>/<< parameters.file_slug >>-${SEMVER}.<< parameters.extension >> \
-o << parameters.os >> \
-a << parameters.arch >> \
-f speckle-sharp-ci-tools/Installers/<< parameters.file_slug >>/<< parameters.file_slug >>-${SEMVER}.<< parameters.extension >>
Expand Down
4 changes: 2 additions & 2 deletions bpy_speckle/operators/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_objects_collections(base: Base) -> Dict[str, list]:
return collections


def get_objects_nested_lists(items: list, parent_col: bpy.types.Collection = None) -> List:
def get_objects_nested_lists(items: list, parent_col: Optional[bpy.types.Collection] = None) -> List:
"""For handling the weird nested lists that come from Grasshopper"""
objects = []

Expand All @@ -66,7 +66,7 @@ def get_objects_nested_lists(items: list, parent_col: bpy.types.Collection = Non
return objects


def get_objects_collections_recursive(base: Base, parent_col: bpy.types.Collection = None) -> List:
def get_objects_collections_recursive(base: Base, parent_col: Optional[bpy.types.Collection] = None) -> List:
"""Recursively create collections based on the dynamic members on nested `Base` objects within the root commit object"""
# if it's a convertable (registered) class and not just a plain `Base`, return the object itself
if can_convert_to_native(base):
Expand Down
Loading

0 comments on commit b1481bd

Please sign in to comment.