Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanmars committed Apr 30, 2024
1 parent 24acb54 commit b84fe15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/core/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ abstract class BaseExecutor {
// check we have a container name
final appName = app.name;
if (appName == null) {
throw TieError('app name can\'t be empty');
throw TieError("app name can't be empty");
}
// we only use alpha-numeric lowercase chars - validate other chars?
if (appName.contains(RegExp("[^a-z0-9-]"))) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/deploy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:intl/intl.dart';
import 'package:yaml/yaml.dart';

import '../handlers/eks_handler.dart';
import '../impl/base.dart';
import './base.dart';
import '../api/tiefile.dart';
import '../api/types.dart';
import '../log.dart';
Expand Down

0 comments on commit b84fe15

Please sign in to comment.