Skip to content

Commit

Permalink
Merge e969126 into bcdd5aa
Browse files Browse the repository at this point in the history
  • Loading branch information
rahkumar651991 committed Jun 1, 2021
2 parents bcdd5aa + e969126 commit b4e49cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Copyright (c) 1999-2013, Juniper Networks Inc.
Copyright (c) 1999-2021, Juniper Networks Inc.
2013, Jeremy Schulman

All rights reserved.
Expand All @@ -18,10 +18,10 @@
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY <copyright holder> ''AS IS'' AND ANY
THIS SOFTWARE IS PROVIDED BY Juniper Networks Inc. ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
DISCLAIMED. IN NO EVENT SHALL Juniper Networks Inc. BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
Expand Down
6 changes: 5 additions & 1 deletion lib/jnpr/junos/factory/state_machine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from collections import OrderedDict
from functools import reduce
import re
import copy
Expand All @@ -8,6 +7,11 @@
from transitions import Machine
import pyparsing as pp

try:
from collections.abc import OrderedDict
except ImportError:
from collections import OrderedDict

logger = logging.getLogger("jnpr.junos.factory.state_machine")


Expand Down

0 comments on commit b4e49cd

Please sign in to comment.