Skip to content

Commit

Permalink
Fix lint warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jul 23, 2018
1 parent 36c4dfa commit a199aa9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions lib/legacy/class.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
*/

import { LegacyElementMixin } from './legacy-element-mixin.js';
import { DomModule } from '../elements/dom-module.js';
import { strictTemplatePolicy } from '../utils/settings.js';

let metaProps = {
attached: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/mixins/element-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export const ElementMixin = dedupingMixin(base => {
function getTemplateFromDomModule(is) {
let template = null;
if (is && allowTemplateFromDomModule) {
template = DomModule.import(is, 'template')
template = DomModule.import(is, 'template');
// Under strictTemplatePolicy, require any element with an `is`
// specified to have a dom-module
if (strictTemplatePolicy && !template) {
Expand Down

0 comments on commit a199aa9

Please sign in to comment.