On March 13, a US court of appeals determined that certain clauses of Maine’s overtime laws are grammatically ambiguous. Because of that lack of clarity, the five drivers won their appeal and were found eligible for overtime....so the judge ruled in favor of the drivers. They were working overtime hours, and the law didn't clearly exempt them from overtime pay, so they deserved overtime pay.
According to state law, the following types of activities are among those that don’t qualify for overtime pay:
The canning, processing, preserving,
freezing, drying, marketing, storing,
packing for shipment or distribution of:
(1) Agricultural produce;
(2) Meat and fish products; and
(3) Perishable foods.
Is packing (for shipment or distribution) a single activity that is exempt from overtime pay? Or are packing and distributing two different activities, and both exempt? If lawmakers had used a serial comma, it would have been clear that distribution was an overtime-exempt activity on its own. But without the comma, wrote US appeals judge David J. Barron, the law is ambiguous...
# = = = = = def IsExempt(activity,product): ExemptActivities = [ "processing", "preserving", "freezing", "drying", "marketing", "storing", "packing for shipment", "distribution"] ExemptProducts = [ "Agricultural produce", "Meat products", "Fish products", "Perishable foods"] decision = 0 if (activity in ExemptActivities) and (product in ExemptProducts): decision = "No overtime" else: decision = "overtime" return decision # end definition of function IsExempt # = = = = = # Test for a specified combination..... activity = "distribution" product = "Perishable foods" print "for %s of %s, %s" % (activity, product, IsExempt(activity,product) ) # = = = = =
Labels: Aptronym Alert, Patient things
The current icon shows Polistra using a Personal Equation Machine.