Skip to content

Commit

Permalink
Update covid.js
Browse files Browse the repository at this point in the history
  • Loading branch information
QasimWani authored Mar 19, 2020
1 parent 0d8301e commit 2219857
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions covid.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ covid.update_data = () =>
{
const process = spawn('python', [
"-u",
"C:/Users/qasim/Desktop/Exigence/COVID-19/CoronaBluetooth/Diagnostics/get_updates.py"
"get_updates.py"
]);
process.stdout.on('data',async(data)=>{
console.log(`data: ${data}`);
Expand All @@ -24,7 +24,7 @@ covid.GitHub_Push = () =>
{
const process = spawn('python', [
"-u",
"C:/Users/qasim/Desktop/Exigence/COVID-19/CoronaBluetooth/Diagnostics/github_push.py"
"github_push.py"
]);
process.stdout.on('data',async(data)=>{
console.log(`data: ${data}`);
Expand All @@ -37,4 +37,4 @@ covid.GitHub_Push = () =>
});
}

module.exports = covid;
module.exports = covid;

0 comments on commit 2219857

Please sign in to comment.