Skip to content

Commit

Permalink
chore: fix imports order (#1639)
Browse files Browse the repository at this point in the history
  • Loading branch information
levenleven committed Jul 31, 2023
1 parent 765743e commit 1c0b30f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/web-api/src/WebClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import { basename } from 'path';
import { Readable } from 'stream';
import { SecureContextOptions } from 'tls';

import zlib from 'zlib';
import { TextDecoder } from 'util';
import isStream from 'is-stream';
import PQueue from 'p-queue';
import pRetry, { AbortError } from 'p-retry';
import axios, { AxiosInstance, AxiosResponse } from 'axios';
import FormData from 'form-data';
import isElectron from 'is-electron';
import zlib from 'zlib';
import { TextDecoder } from 'util';
import {
AdminAnalyticsMemberDetails,
AdminAnalyticsPublicChannelDetails,
Expand Down
2 changes: 1 addition & 1 deletion packages/web-api/src/file-upload.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Logger } from '@slack/logger';
import { readFileSync } from 'fs';
import { Readable } from 'stream';
import { Logger } from '@slack/logger';
import { errorWithCode, ErrorCode } from './errors';
import { FilesCompleteUploadExternalArguments, FilesUploadV2Arguments, FileUploadV2, FileUploadV2Job } from './methods';

Expand Down

0 comments on commit 1c0b30f

Please sign in to comment.