Remove unused import

master
John Downey 2022-04-10 10:25:26 -05:00
parent 13e1fe4fe3
commit 3297857688
1 changed files with 2 additions and 4 deletions

View File

@ -1,13 +1,11 @@
import { AcksActor } from '../actor/entity.js';
import { AcksDice } from "../dice.js"; import { AcksDice } from "../dice.js";
export class AcksCharacterCreator extends FormApplication { export class AcksCharacterCreator extends FormApplication {
static get defaultOptions() { static get defaultOptions() {
const options = super.defaultOptions; const options = super.defaultOptions;
options.classes = ["acks", "dialog", "creator"], options.classes = ["acks", "dialog", "creator"],
options.id = 'character-creator'; options.id = 'character-creator';
options.template = options.template = 'systems/acks/templates/actors/dialogs/character-creation.html';
'systems/acks/templates/actors/dialogs/character-creation.html';
options.width = 235; options.width = 235;
return options; return options;
} }