Skip to content

Commit

Permalink
New lines
Browse files Browse the repository at this point in the history
  • Loading branch information
l7ssha committed Sep 23, 2024
1 parent 79295a0 commit 18620b2
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ build/
.vscode/
.idea/

lib_old/
lib_old/
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ doc/api/
*.exe
*.db

lib_old/
lib_old/
2 changes: 1 addition & 1 deletion lib/running_on_dart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export 'src/modules/poop_name.dart';

export 'src/services/db.dart';

export 'src/settings.dart';
export 'src/settings.dart';
2 changes: 1 addition & 1 deletion lib/src/commands/feature_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ final featureSettings = ChatGroup(
}),
),
],
);
);
2 changes: 1 addition & 1 deletion lib/src/commands/info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ final info = ChatCommand(
),
);
}),
);
);
2 changes: 1 addition & 1 deletion lib/src/models/feature_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ class FeatureSetting {
data: row['additional_data'] as String?,
);
}
}
}
2 changes: 1 addition & 1 deletion lib/src/modules/join_logs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ class JoinLogsModule {

return await FeatureSettingsService.instance.isEnabled(Setting.joinLogs, guildId);
}
}
}
2 changes: 1 addition & 1 deletion lib/src/modules/poop_name.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ class PoopNameModule {

return await FeatureSettingsService.instance.isEnabled(Setting.poopName, guildId);
}
}
}
2 changes: 1 addition & 1 deletion lib/src/repository/feature_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ class FeatureSettingsRepository {
'guild_id': setting.guildId.toString(),
});
}
}
}
2 changes: 1 addition & 1 deletion lib/src/services/feature_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class FeatureSettingsService {
Future<void> disable(FeatureSetting setting) async {
await FeatureSettingsRepository.instance.disableSetting(setting);
}
}
}

0 comments on commit 18620b2

Please sign in to comment.