Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rboman committed Sep 27, 2023
1 parent 24013f0 commit 004cb33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions apps/splines/plot_matplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from splines import *



def plot_one_seg():
""" Test routine: create one segment and plot it with matplotlib
"""
Expand Down Expand Up @@ -68,7 +67,7 @@ def plot_one_spline():

fig = plt.figure()
plt.plot(sx, sy)
plt.plot(px, py,'o')
plt.plot(px, py, 'o')
plt.grid()
plt.xlabel('X')
plt.ylabel('Y')
Expand Down
3 changes: 0 additions & 3 deletions format_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
#
# This script runs "clang-format" recursively on all C/C++ files

import sys
import os
import fnmatch
import re
import subprocess


Expand Down Expand Up @@ -41,7 +39,6 @@ def all_files(root,
def main():

# loop over all files and format them
encs = {}
for f in all_files(os.getcwd(), patterns='*.cpp;*.c;*.h;*.hpp',
skips='*.git*;*build*;*externals*'):
print(f)
Expand Down

0 comments on commit 004cb33

Please sign in to comment.