Skip to content

Commit

Permalink
Fix import style
Browse files Browse the repository at this point in the history
  • Loading branch information
cbolles committed Sep 4, 2024
1 parent 406a58f commit abf6507
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bundles/update.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable, PipeTransform } from '@nestjs/common';
import { DampLabServicePipe } from 'src/services/damplab-services.pipe';
import { DampLabServicePipe } from '../services/damplab-services.pipe';

Check warning on line 2 in src/bundles/update.pipe.ts

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement
import { BundleChange } from './dtos/update.dto';

@Injectable()
Expand Down
2 changes: 1 addition & 1 deletion src/categories/update.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable, PipeTransform } from '@nestjs/common';
import { DampLabServicePipe } from 'src/services/damplab-services.pipe';
import { DampLabServicePipe } from '../services/damplab-services.pipe';

Check warning on line 2 in src/categories/update.pipe.ts

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement
import { CategoryChange } from './dtos/update.dto';

@Injectable()
Expand Down
2 changes: 1 addition & 1 deletion src/services/update.pipe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable, PipeTransform } from '@nestjs/common';
import { DampLabServicePipe } from 'src/services/damplab-services.pipe';
import { DampLabServicePipe } from '../services/damplab-services.pipe';
import { ServiceChange } from './dtos/update.dto';

@Injectable()
Expand Down

0 comments on commit abf6507

Please sign in to comment.