Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bmesuere committed Aug 7, 2024
1 parent 495d461 commit 37a23a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/commands/unipept/unipept_subcommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { FormatterFactory } from "../../formatters/formatter_factory.js";
import { CSVFormatter } from "../../formatters/csv_formatter.js";
import path from "path";
import os from "os";
import { appendFile, mkdir, writeFile } from "fs/promises";
import { appendFile, mkdir } from "fs/promises";

export abstract class UnipeptSubcommand {
public command: Command;
Expand Down
1 change: 0 additions & 1 deletion tests/formatters/formatter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ test('test integrate fasta headers', async () => {
const fasta = { 5: ">test" };
const object = [TestObject.testObject(), TestObject.testObject()];
const integrated = [Object.assign({ fasta_header: ">test" }, TestObject.testObject()), Object.assign({ fasta_header: ">test" }, TestObject.testObject())];
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
expect(formatter.integrateFastaHeaders(object, fasta)).toEqual(integrated);
});

0 comments on commit 37a23a2

Please sign in to comment.