Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jan 4, 2024
1 parent 3b917e4 commit 7046f0f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Managers/ProcessProvider.vala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
namespace Monitor {
public class ProcessProvider : GLib.Object{
public class ProcessProvider : GLib.Object {
private static GLib.Once<ProcessProvider> instance;
public static unowned ProcessProvider get_default () {
return instance.once (() => { return new ProcessProvider (); });
Expand All @@ -26,7 +26,7 @@ namespace Monitor {

private bool spawn_workaround () {
try {
debug ("Spawning workaround...");
debug ("Spawning workaround. . .");
string app_path = ProcessUtils.get_flatpak_app_path ();
string command = @"flatpak-spawn --host env LANG=C $app_path/share/workaround/com.github.stsdc.monitor-workaround.py";
return GLib.Process.spawn_command_line_async (command);
Expand Down Expand Up @@ -74,5 +74,6 @@ namespace Monitor {
public void end_process (int pid) {
DBusWorkaroundClient.get_default ();
}

}
}

0 comments on commit 7046f0f

Please sign in to comment.