Skip to content

Commit

Permalink
Happy new year!
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Jan 2, 2024
1 parent bf40b8e commit 6098025
Show file tree
Hide file tree
Showing 85 changed files with 85 additions and 85 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
2 changes: 1 addition & 1 deletion montepy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
""" MontePy is a library for reading, editing, and writing MCNP input files.
This creates a semantic understanding of the MCNP input file.
Expand Down
2 changes: 1 addition & 1 deletion montepy/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import argparse
import glob
import montepy
Expand Down
2 changes: 1 addition & 1 deletion montepy/_cell_data_control.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy


Expand Down
2 changes: 1 addition & 1 deletion montepy/cell.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import copy
from montepy.cells import Cells
from montepy.constants import BLANK_SPACE_CONTINUE
Expand Down
2 changes: 1 addition & 1 deletion montepy/cells.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy
from montepy.numbered_object_collection import NumberedObjectCollection
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.errors import UnsupportedFeature

"""
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
__name__ = "montepy.data_inputs"
from .data_input import DataInput
from .material import Material
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/cell_modifier.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import abstractmethod
import montepy
from montepy.data_inputs.data_input import DataInputAbstract
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/data_input.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import abstractmethod
import copy

Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/data_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs import (
data_input,
fill,
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/element.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.errors import *


Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/fill.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import itertools as it
from montepy.data_inputs.cell_modifier import CellModifierInput
from montepy.data_inputs.transform import Transform
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/importance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import collections
import copy
import math
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/isotope.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.element import Element
from montepy.errors import *
from montepy.input_parser.syntax_node import ValueNode
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/lattice.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum, unique


Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/lattice_input.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import itertools
from montepy.data_inputs.cell_modifier import CellModifierInput
from montepy.data_inputs.lattice import Lattice
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/material.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import copy
from montepy.data_inputs import data_input, thermal_scattering
from montepy.data_inputs.isotope import Isotope
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/material_component.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.isotope import Isotope
from montepy.input_parser.syntax_node import PaddingNode, ValueNode
from montepy.utilities import make_prop_val_node
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/mode.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.data_input import DataInputAbstract
from montepy.input_parser import syntax_node
from montepy.particle import Particle
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/tally.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy
from montepy.data_inputs.data_input import DataInputAbstract
from montepy.input_parser.tally_parser import TallyParser
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/tally_multiplier.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.data_input import DataInputAbstract
from montepy.input_parser.tally_parser import TallyParser

Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/thermal_scattering.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.data_input import DataInputAbstract
from montepy.input_parser.thermal_parser import ThermalParser
from montepy import mcnp_object
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/transform.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import copy
from montepy import mcnp_object
from montepy.data_inputs import data_input
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/universe_input.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import itertools
from montepy.data_inputs.cell_modifier import CellModifierInput
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/data_inputs/volume.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.data_inputs.cell_modifier import CellModifierInput
from montepy.errors import *
from montepy.constants import DEFAULT_VERSION
Expand Down
2 changes: 1 addition & 1 deletion montepy/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
class LineOverRunWarning(UserWarning):
"""
Raised when non-comment inputs exceed the allowed line length in an input.
Expand Down
2 changes: 1 addition & 1 deletion montepy/geometry_operators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum


Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
__name__ = "montepy.input_parser"
from . import block_type
from . import cell_parser
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/block_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum, unique


Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/cell_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.errors import *
from montepy.input_parser.parser_base import MCNP_Parser
from montepy.input_parser import syntax_node
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/data_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.errors import *
from montepy.input_parser.tokens import DataLexer
from montepy.input_parser.parser_base import MCNP_Parser, MetaBuilder
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/input_file.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import itertools as it
from montepy.utilities import *

Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/input_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy import mcnp_problem
from montepy.constants import DEFAULT_VERSION

Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/input_syntax_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from .block_type import BlockType
from collections import deque
from .. import errors
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/mcnp_input.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import ABC, abstractmethod
import math
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/parser_base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.input_parser.tokens import MCNP_Lexer
from montepy.input_parser import syntax_node
from sly import Parser
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/read_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.input_parser.parser_base import MCNP_Parser
from montepy.input_parser import syntax_node

Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/shortcuts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum


Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/surface_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.input_parser.parser_base import MCNP_Parser
from montepy.input_parser.tokens import SurfaceLexer
from montepy.input_parser import syntax_node
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/syntax_node.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import ABC, abstractmethod
import collections
import copy
Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/tally_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.input_parser.data_parser import DataParser
from montepy.input_parser import syntax_node

Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/thermal_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.input_parser.data_parser import DataParser
from montepy.input_parser import syntax_node

Expand Down
2 changes: 1 addition & 1 deletion montepy/input_parser/tokens.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy import constants
from montepy.utilities import fortran_float
import re
Expand Down
2 changes: 1 addition & 1 deletion montepy/materials.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy
from montepy.numbered_object_collection import NumberedObjectCollection

Expand Down
2 changes: 1 addition & 1 deletion montepy/mcnp_object.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import ABC, abstractmethod
import itertools as it
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/mcnp_problem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum
import itertools
from montepy.data_inputs import mode, transform
Expand Down
2 changes: 1 addition & 1 deletion montepy/numbered_mcnp_object.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import abstractmethod
from montepy.mcnp_object import MCNP_Object

Expand Down
2 changes: 1 addition & 1 deletion montepy/numbered_object_collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from abc import ABC, abstractmethod
import typing
import montepy
Expand Down
2 changes: 1 addition & 1 deletion montepy/particle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import Enum, unique


Expand Down
2 changes: 1 addition & 1 deletion montepy/surface_collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.surfaces.surface import Surface
from montepy.surfaces.surface_type import SurfaceType
from montepy.numbered_object_collection import NumberedObjectCollection
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from . import axis_plane
from .axis_plane import AxisPlane
from . import cylinder_par_axis
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/axis_plane.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from .surface_type import SurfaceType
from .surface import Surface
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/cylinder_on_axis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from .surface_type import SurfaceType
from .surface import Surface
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/cylinder_par_axis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from .surface_type import SurfaceType
from .surface import Surface
from montepy.errors import *
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/general_plane.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.errors import *
from montepy.surfaces.surface_type import SurfaceType
from montepy.surfaces.surface import Surface
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/half_space.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy
from montepy.errors import *
from montepy.geometry_operators import Operator
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/surface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import copy
from montepy.errors import *
from montepy.data_inputs import transform
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/surface_builder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.surfaces.axis_plane import AxisPlane
from montepy.surfaces.surface import Surface
from montepy.surfaces.surface_type import SurfaceType
Expand Down
2 changes: 1 addition & 1 deletion montepy/surfaces/surface_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from enum import unique, Enum


Expand Down
2 changes: 1 addition & 1 deletion montepy/transforms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.numbered_object_collection import NumberedObjectCollection
from montepy.data_inputs.transform import Transform

Expand Down
2 changes: 1 addition & 1 deletion montepy/universe.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import montepy
from montepy.cells import Cells
from montepy.input_parser.mcnp_input import Input
Expand Down
2 changes: 1 addition & 1 deletion montepy/universes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from montepy.numbered_object_collection import NumberedObjectCollection
from montepy.universe import Universe

Expand Down
2 changes: 1 addition & 1 deletion montepy/utilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
import functools
import re

Expand Down
2 changes: 1 addition & 1 deletion tests/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
BAD_INPUTS = {
"test_excess_mt.imcnp",
"test_vol_redundant.imcnp",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cell_problem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from unittest import TestCase

import montepy
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data_inputs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023, Battelle Energy Alliance, LLC All Rights Reserved.
# Copyright 2024, Battelle Energy Alliance, LLC All Rights Reserved.
from unittest import TestCase

import montepy
Expand Down
Loading

0 comments on commit 6098025

Please sign in to comment.