diff options
Diffstat (limited to 'lib/compilers/fortran.js')
-rw-r--r-- | lib/compilers/fortran.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/compilers/fortran.js b/lib/compilers/fortran.js index d7638b85c..c7f0e82f7 100644 --- a/lib/compilers/fortran.js +++ b/lib/compilers/fortran.js @@ -24,11 +24,13 @@ import path from 'path'; -import { BaseCompiler } from '../base-compiler'; +import {BaseCompiler} from '../base-compiler'; import * as utils from '../utils'; export class FortranCompiler extends BaseCompiler { - static get key() { return 'fortran'; } + static get key() { + return 'fortran'; + } async runCompiler(compiler, options, inputFilename, execOptions) { if (!execOptions) { |