Skip to content

Commit 4151ef4

Browse files
committed
Fix lint warnings
1 parent a9cd534 commit 4151ef4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/utils/templatize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ export function templatize(template, owner, options) {
550550
baseClass = createTemplatizerClass(template, templateInfo, options);
551551
templateInfo.templatizeInstanceClass = baseClass;
552552
}
553-
const methodHost = findMethodHost(template)
553+
const methodHost = findMethodHost(template);
554554
// Host property forwarding must be installed onto template instance
555555
addPropagateEffects(template, templateInfo, options, methodHost);
556556
// Subclass base class and add reference for this specific template

test/unit/property-effects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<script type="module">
2727
import './property-effects-elements.js';
2828
import { Polymer, html } from '../../polymer-legacy.js';
29-
import { setSanitizeDOMValue, sanitizeDOMValue, setLegacyWarnings, setLegacyOptimizations, legacyUndefined, setLegacyUndefined, legacyNoBatch, setLegacyNoBatch, legacyNotifyOrder, setLegacyNotifyOrder } from '../../lib/utils/settings.js';
29+
import { setSanitizeDOMValue, sanitizeDOMValue, setLegacyWarnings, legacyUndefined, setLegacyUndefined, legacyNoBatch, setLegacyNoBatch, legacyNotifyOrder, setLegacyNotifyOrder } from '../../lib/utils/settings.js';
3030
import { PropertyEffects } from '../../lib/mixins/property-effects.js';
3131
import { flush } from '../../lib/utils/flush.js';
3232

0 commit comments

Comments
 (0)