Skip to content

Commit

Permalink
Ran linter
Browse files Browse the repository at this point in the history
  • Loading branch information
abondrn committed Oct 30, 2023
1 parent 1f49f9d commit 8112866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/genbank/genbank.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func (feature *Feature) Copy() Feature {
// Creates deep copy of Location, which supports safe duplication
func (location *Location) Copy() Location {
sublocations := make([]Location, len(location.SubLocations))
for i, _ := range location.SubLocations {
for i := range location.SubLocations {
sublocations[i] = location.SubLocations[i].Copy()
}
return Location{
Expand Down

0 comments on commit 8112866

Please sign in to comment.