Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Commit

Permalink
fixed indentation in team.py
Browse files Browse the repository at this point in the history
  • Loading branch information
riffnshred committed Jul 4, 2023
1 parent d73aaf6 commit 9e9ed6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/data/team.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def __init__(self, id, abbrev, name):


class TeamScore(Team):
def __init__(self, id, abbrev, name, goals=0, sog=0, penalties=None, powerplay=False, num_skaters=0, pulled_goalie=False, goal_plays=None):
def __init__(self, id, abbrev, name, goals=0, sog=0, penalties=None, powerplay=False, num_skaters=0, pulled_goalie=False, goal_plays=None):
super().__init__(id, abbrev, name)
if goal_plays is None:
goal_plays = []
Expand Down
2 changes: 1 addition & 1 deletion submodules/matrix
Submodule matrix updated 43 files
+2 −0 .gitignore
+1 −0 Makefile
+19 −4 README.md
+5 −2 bindings/c#/.gitignore
+85 −0 bindings/c#/Bindings.cs
+38 −0 bindings/c#/Color.cs
+50 −0 bindings/c#/InternalRGBLedMatrixOptions.cs
+23 −10 bindings/c#/Makefile
+11 −0 bindings/c#/Multiplexing.cs
+7 −22 bindings/c#/README.md
+92 −92 bindings/c#/RGBLedCanvas.cs
+31 −51 bindings/c#/RGBLedFont.cs
+95 −282 bindings/c#/RGBLedMatrix.cs
+124 −0 bindings/c#/RGBLedMatrixOptions.cs
+27 −0 bindings/c#/RPiRgbLEDMatrix.csproj
+10 −0 bindings/c#/ScanModes.cs
+11 −0 bindings/c#/examples/FontExample/FontExample.csproj
+29 −0 bindings/c#/examples/FontExample/Program.cs
+0 −41 bindings/c#/examples/Makefile
+11 −0 bindings/c#/examples/MatrixRain/MatrixRain.csproj
+74 −0 bindings/c#/examples/MatrixRain/Program.cs
+11 −0 bindings/c#/examples/MinimalExample/MinimalExample.csproj
+19 −0 bindings/c#/examples/MinimalExample/Program.cs
+12 −0 bindings/c#/examples/PlayGIF/PlayGIF.csproj
+40 −0 bindings/c#/examples/PlayGIF/Program.cs
+33 −0 bindings/c#/examples/PulsingBrightness/Program.cs
+11 −0 bindings/c#/examples/PulsingBrightness/PulsingBrightness.csproj
+90 −0 bindings/c#/examples/Rotating3DCube/Program.cs
+11 −0 bindings/c#/examples/Rotating3DCube/Rotating3DCube.csproj
+0 −36 bindings/c#/examples/font-example.cs
+0 −90 bindings/c#/examples/matrix-rain.cs
+0 −32 bindings/c#/examples/minimal-example.cs
+0 −54 bindings/c#/examples/pulsing-brightness.cs
+23 −10 include/led-matrix-c.h
+3 −0 include/led-matrix.h
+2 −0 lib/framebuffer-internal.h
+9 −0 lib/framebuffer.cc
+8 −0 lib/led-matrix-c.cc
+4 −0 lib/led-matrix.cc
+15 −0 shell.nix
+1 −0 utils/.gitignore
+1 −1 utils/text-scroller.cc
+1 −1 utils/video-viewer.cc

0 comments on commit 9e9ed6f

Please sign in to comment.