Skip to content

Commit

Permalink
Tiny lint fix (#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Sep 29, 2024
1 parent 6821417 commit c3861b2
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 c3861b2

Please sign in to comment.