Skip to content

Commit

Permalink
Remove redundant gets from directory
Browse files Browse the repository at this point in the history
  • Loading branch information
index-git committed Jan 20, 2023
1 parent 9267205 commit df08944
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/layman/common/prime_db_schema/publications.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@ def get_publication_infos_with_metainfo(workspace_name=None, pub_type=None, styl
'image_mosaic': image_mosaic,
'updated_at': updated_at,
'_table_uri': TableUri(
db_uri_str=external_table_uri.get('db_uri_str'),
schema=external_table_uri.get('schema'),
table=external_table_uri.get('table'),
geo_column=external_table_uri.get('geo_column'),
db_uri_str=external_table_uri['db_uri_str'],
schema=external_table_uri['schema'],
table=external_table_uri['table'],
geo_column=external_table_uri['geo_column'],
) if external_table_uri else None,
'native_bounding_box': [xmin, ymin, xmax, ymax],
'native_crs': db_util.get_crs(srid) if srid else None,
Expand Down

0 comments on commit df08944

Please sign in to comment.