Skip to content

Commit

Permalink
FIX: unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
ring630 committed Aug 21, 2024
1 parent f8d39e7 commit 2a7088b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyedb/configuration/cfg_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def export_properties(self):
class CfgOperations(CfgBase):
def __init__(self, pedb, data):
self._pedb = pedb
self.op_cutout = CfgCutout(pedb, **data["cutout"]) if "cutout" in data else None
self.op_cutout = CfgCutout(pedb, **data["cutout"]) if "cutout" in data else CfgCutout(pedb)

def apply(self):
"""Imports operation information from JSON."""
Expand Down

0 comments on commit 2a7088b

Please sign in to comment.