Skip to content

Commit

Permalink
Revert null change
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindlewis23 committed Jul 1, 2024
1 parent 68aed16 commit 6ea44a4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions hexrd/config/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
"sfacmin", "sfacmax", "pintmin", "pintmax"]
)

# Converting to none threw errors, maybe change later
class Null():
pass

null = Null()


def merge_dicts(a, b):
"""Return a merged dict, updating values from `a` with values from `b`."""
# need to pass a deep copy of a at the top level only:
Expand Down

0 comments on commit 6ea44a4

Please sign in to comment.