Skip to content
Snippets Groups Projects
Select Git revision
  • c764c93c7a45e9542921806c64303fe9df5b7488
  • develop default protected
  • master protected
  • add-java-build-server
  • add-museum-reservations-server
  • update-mr-approval
  • php-soap
  • add-zaproxy-container
  • 16-update-dependency-check-to-v6-0-3
  • 15-detect-secrets-does-not-detect-secrets-in-subdirectories
10 results

xml-lint

Blame
  • majors.py 465 B
    from typing import Set
    
    
    class Major:
        majors: Set["Major"] = set()
    
        def __init__(self, name: str, abbreviations: Set[str]):
            self.name: str = name
            self.abbreviations: Set[str] = abbreviations
            Major.majors.add(self)
    
    
    Major('Computer Science', {'COMP-BS', 'COMP-BA', 'COMP-MAJ', 'COMP-BSCS'})  # we don't yet have BSCS but I expect we soon will
    Major('Computer Engineering', {'CENG-BSCP'})
    Major('Software Engineering', {'SOFT-BSSE'})