From 40e17145a80478b15ba5decb939f1c0119149a81 Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 3 Dec 2022 11:03:59 -0500 Subject: [PATCH] Make the linter happy (#4393) --- lib/compilers/carbon.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compilers/carbon.ts b/lib/compilers/carbon.ts index 2dfa1dfe3..47e819b87 100644 --- a/lib/compilers/carbon.ts +++ b/lib/compilers/carbon.ts @@ -22,12 +22,12 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. +import {ParsedAsmResult} from '../../types/asmresult/asmresult.interfaces'; +import {CompilerInfo} from '../../types/compiler.interfaces'; +import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; import {BaseCompiler} from '../base-compiler'; import {BaseParser} from './argument-parsers'; -import {CompilerInfo} from '../../types/compiler.interfaces'; -import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; -import {ParsedAsmResult} from '../../types/asmresult/asmresult.interfaces'; export class CarbonCompiler extends BaseCompiler { static get key() { -- GitLab