Skip to content

Commit

Permalink
generator: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Oct 8, 2024
1 parent 6821417 commit e8ba3c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion discoveryapis_generator/lib/src/dart_schema_types.dart
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,9 @@ extension DartSchemaTypeExtension on DartSchemaType {
this is NamedArrayType ||
this is UnnamedArrayType ||
this is PrimitiveDartSchemaType ||
this is UnnamedMapType) return '';
this is UnnamedMapType) {
return '';
}
return '$importName.';
}
}

0 comments on commit e8ba3c4

Please sign in to comment.