Skip to content

Commit

Permalink
update typings
Browse files Browse the repository at this point in the history
  • Loading branch information
TchernyavskyDaniil committed Jun 1, 2020
1 parent 14f3c63 commit aff43bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/lib/ru_social_sentiment/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getRuSentiment = async (
dataWithSentiments: { [key: string]: number };
countOfSentimentCoefficients: number;
}>((resolve, reject) => {
pythonProcess.stdout.on('data', sentiments => {
pythonProcess.stdout.on('data', (sentiments: ArrayBuffer) => {
const result = sentiments.toString();

const normalizedSentiments: { [key: string]: number } = {};
Expand Down

0 comments on commit aff43bf

Please sign in to comment.