Skip to content

Commit

Permalink
Fix bug / Build 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
datnguye committed May 27, 2021
1 parent 684d20c commit 9a51999
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='snowbim',
version='1.0.6',
version='1.0.7',
author='datnguye',
author_email='[email protected]',
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 deletions snowbim/engines/bimengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def upgrade_bim(file_path:str=None, out_path:str=None, changes:dict={}):

# existing table
# existing table \ columns
in_table_columns = in_tables['columns']
in_table_columns = in_table['columns']
for column in table['columns']:
change_colum_name = column['name']
in_colum = [x for x in in_table_columns if x['name'] == change_colum_name]
Expand All @@ -106,7 +106,7 @@ def upgrade_bim(file_path:str=None, out_path:str=None, changes:dict={}):
in_colum['sourceColumn'] = column['sourceColumn'] or in_colum['sourceColumn']

# existing table \ partitions
in_table_partitions = in_tables['partitions']
in_table_partitions = in_table['partitions']
for partition in table['partitions']:
in_partition = [
x for x in in_table_partitions
Expand Down

0 comments on commit 9a51999

Please sign in to comment.