Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Tilsch committed Apr 18, 2024
1 parent d4d6221 commit b4aee96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/edb-prisma-cli/src/import.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import cliProgress from "cli-progress";
import { PrismaClient } from "@prisma/client";
import { AbstractDatastore, CountAndIterable } from "@slub/edb-global-types";
import {typeIRItoTypeName} from "./dataStore";
import { typeIRItoTypeName } from "./dataStore";

type PropertiesAndConnects = {
id?: string;
Expand Down Expand Up @@ -80,7 +80,7 @@ const getPropertiesAndConnects = async (
prisma,
importError,
`${key}_`,
middleware
middleware,
);
properties = {
...properties,
Expand Down Expand Up @@ -182,7 +182,7 @@ const importData = async (
document: any,
importError: Set<string>,
) => {
const typeName = importStore.typeIRItoTypeName(typeIRI)
const typeName = importStore.typeIRItoTypeName(typeIRI);
try {
await importStore
.loadDocument(typeName, entityIRI)
Expand Down

0 comments on commit b4aee96

Please sign in to comment.