Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
loafoe committed Sep 18, 2024
1 parent eca1683 commit e1fc2d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func dataSourceCDRPropositionRead(ctx context.Context, d *schema.ResourceData, m
return diag.FromErr(fmt.Errorf("R4.MarshalResource: %w", err))
}
_ = d.Set("fhir_json", string(jsonResource))
if resource.Identifier != nil && len(resource.Identifier) > 0 {
if len(resource.Identifier) > 0 {
var uses []string
var systems []string
var values []string
Expand Down Expand Up @@ -153,7 +153,7 @@ func dataSourceCDRPropositionRead(ctx context.Context, d *schema.ResourceData, m
return diag.FromErr(fmt.Errorf("STU3.MarshalResource: %w", err))
}
_ = d.Set("fhir_json", string(jsonResource))
if resource.Identifier != nil && len(resource.Identifier) > 0 {
if len(resource.Identifier) > 0 {
var uses []string
var systems []string
var values []string
Expand Down

0 comments on commit e1fc2d6

Please sign in to comment.